[InstCombine] Signed saturation patterns
[llvm-core.git] / test / CodeGen / Thumb2 / 2010-11-22-EpilogueBug.ll
blob0372bd7beb4e293612b39a5ab2af1aa30719be05
1 ; rdar://8465407
2 ; RUN: llc < %s -mtriple=thumbv7-apple-ios -arm-atomic-cfg-tidy=0 | FileCheck %s
4 %struct.buf = type opaque
6 declare void @bar() nounwind optsize
8 define void @foo() nounwind optsize "no-frame-pointer-elim"="true" {
9 ; CHECK-LABEL: foo:
10 ; CHECK: push
11 ; CHECK: add r7, sp
12 ; CHECK: sub sp, #4
13 entry:
14   %m.i = alloca %struct.buf*, align 4
15   br label %bb
17 bb:
18   br i1 undef, label %bb3, label %bb2
20 bb2:
21   call void @bar() nounwind optsize
22   br i1 undef, label %bb, label %bb3
24 bb3:
25   br i1 undef, label %return, label %bb
27 return:
28 ; CHECK: %bb3
29 ; 'mov sp, r7' would have left sp in an invalid state
30 ; CHECK-NOT: mov sp, r7
31 ; CHECK-NOT: sub, sp, #4
32 ; CHECK: add sp, #4
33   ret void