1 ; RUN: llc -march=hexagon < %s | FileCheck %s
3 ; CHECK-LABEL: enabled:
4 ; CHECK: memw({{.*}}) += #1
5 define void @enabled(ptr %p) #0 {
12 ; CHECK-LABEL: disabled:
13 ; CHECK-NOT: memw({{.*}}) += #1
14 define void @disabled(ptr %p) #1 {
15 %v0 = load i32, ptr %p
21 attributes #0 = { nounwind }
22 attributes #1 = { nounwind "target-features"="-memops" }