feature-memops.ll 490 Bytes
; 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" }