llvm-6502/test/CodeGen/Thumb/2009-07-19-SPDecBug.ll
Rafael Espindola 1e81966626 Remove arm_apcscc from the test files. It is the default and doing this
matches what llvm-gcc and clang now produce.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106221 91177308-0d34-0410-b5e6-96231b3b80d8
2010-06-17 15:18:27 +00:00

34 lines
665 B
LLVM

; RUN: llc < %s -mtriple=thumbv6-elf | not grep "subs sp"
; PR4567
define i8* @__gets_chk(i8* %s, i32 %slen) nounwind {
entry:
br i1 undef, label %bb, label %bb1
bb: ; preds = %entry
ret i8* undef
bb1: ; preds = %entry
br i1 undef, label %bb3, label %bb2
bb2: ; preds = %bb1
%0 = alloca i8, i32 undef, align 4 ; <i8*> [#uses=0]
br label %bb4
bb3: ; preds = %bb1
%1 = malloc i8, i32 undef ; <i8*> [#uses=0]
br label %bb4
bb4: ; preds = %bb3, %bb2
br i1 undef, label %bb5, label %bb6
bb5: ; preds = %bb4
%2 = call i8* @gets(i8* %s) nounwind ; <i8*> [#uses=1]
ret i8* %2
bb6: ; preds = %bb4
unreachable
}
declare i8* @gets(i8*) nounwind