Fix PR5391: support early clobber physical register def tied with a use (ewwww)
[oota-llvm.git] / test / CodeGen / X86 / hidden-vis-5.ll
1 ; RUN: llc < %s -mtriple=i386-apple-darwin9 -relocation-model=pic -disable-fp-elim -unwind-tables | FileCheck %s
2 ; <rdar://problem/7383328>
3
4 @.str = private constant [12 x i8] c"hello world\00", align 1 ; <[12 x i8]*> [#uses=1]
5
6 define hidden void @func() nounwind ssp {
7 entry:
8   %0 = call i32 @puts(i8* getelementptr inbounds ([12 x i8]* @.str, i64 0, i64 0)) nounwind ; <i32> [#uses=0]
9   br label %return
10
11 return:                                           ; preds = %entry
12   ret void
13 }
14
15 declare i32 @puts(i8*)
16
17 define hidden i32 @main() nounwind ssp {
18 entry:
19   %retval = alloca i32                            ; <i32*> [#uses=1]
20   %"alloca point" = bitcast i32 0 to i32          ; <i32> [#uses=0]
21   call void @func() nounwind
22   br label %return
23
24 return:                                           ; preds = %entry
25   %retval1 = load i32* %retval                    ; <i32> [#uses=1]
26   ret i32 %retval1
27 }
28
29 ; CHECK: .private_extern _func.eh
30 ; CHECK: .private_extern _main.eh