[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / Hexagon / storerinewabs.ll
blob73e513a8bceee7095b7f50a48f770a9b61d4f43a
1 ; RUN: llc -march=hexagon -hexagon-small-data-threshold=0 < %s | FileCheck %s
3 @global = external global i32, align 4
5 ; There was a bug causing ### to be printed. Make sure we print ## instead.
6 ; CHECK-LABEL: foo
7 ; CHECK: memw(##global) =
9 define void @foo(i32 %x) #0 {
10 entry:
11   %add = add nsw i32 %x, 1
12   store i32 %add, i32* @global, align 4
13   ret void
16 attributes #0 = { norecurse nounwind }