Similar to 806761a762
-mtriple= specifies the full target triple while -march= merely sets the
architecture part of the default target triple, leaving a target triple which
may not make sense.
Therefore, -march= is error-prone and not recommended for tests without a target
triple. The issue has been benign as we recognize avr-apple-darwin as ELF instead
of rejecting it outrightly.
17 lines
418 B
LLVM
17 lines
418 B
LLVM
; RUN: llc -mattr=avr6 < %s -mtriple=avr | FileCheck %s
|
|
|
|
; CHECK-LABEL: atomic_load32
|
|
; CHECK: call __sync_val_compare_and_swap_4
|
|
define i32 @atomic_load32(ptr %foo) {
|
|
%val = load atomic i32, ptr %foo unordered, align 4
|
|
ret i32 %val
|
|
}
|
|
|
|
; CHECK-LABEL: atomic_load_sub32
|
|
; CHECK: call __sync_fetch_and_sub_4
|
|
define i32 @atomic_load_sub32(ptr %foo) {
|
|
%val = atomicrmw sub ptr %foo, i32 13 seq_cst
|
|
ret i32 %val
|
|
}
|
|
|