You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
; RUN: llc -mattr=avr6 < %s -march=avr | FileCheck %s
|
|
|
|
; Checks that atomic fences are simply removed from IR.
|
|
; AVR is always singlethreaded so fences do nothing.
|
|
|
|
; CHECK_LABEL: atomic_fence8
|
|
; CHECK: ; %bb.0:
|
|
; CHECK-NEXT: ret
|
|
define void @atomic_fence8() {
|
|
fence acquire
|
|
ret void
|
|
}
|
|
|