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.

24 lines
490 B

; RUN: llc -march=hexagon < %s | FileCheck %s
; CHECK-LABEL: enabled:
; CHECK: memw({{.*}}) += #1
define void @enabled(i32* %p) #0 {
%v0 = load i32, i32* %p
%v1 = add i32 %v0, 1
store i32 %v1, i32* %p
ret void
}
; CHECK-LABEL: disabled:
; CHECK-NOT: memw({{.*}}) += #1
define void @disabled(i32* %p) #1 {
%v0 = load i32, i32* %p
%v1 = add i32 %v0, 1
store i32 %v1, i32* %p
ret void
}
attributes #0 = { nounwind }
attributes #1 = { nounwind "target-features"="-memops" }