Duncan Sands | b5ca2e9 | 2008-01-14 19:52:09 +0000 | [diff] [blame^] | 1 | ; RUN: llvm-as < %s | opt -instcombine -disable-output |
| 2 | |
| 3 | %struct.FRAME.nest = type { i32, i32 (i32*)* } |
| 4 | %struct.__builtin_trampoline = type { [10 x i8] } |
| 5 | |
| 6 | declare i8* @llvm.init.trampoline(i8*, i8*, i8*) nounwind |
| 7 | |
| 8 | declare i32 @f(%struct.FRAME.nest* nest , i32*) |
| 9 | |
| 10 | define i32 @nest(i32 %n) { |
| 11 | entry: |
| 12 | %FRAME.0 = alloca %struct.FRAME.nest, align 8 ; <%struct.FRAME.nest*> [#uses=3] |
| 13 | %TRAMP.216 = alloca [10 x i8], align 16 ; <[10 x i8]*> [#uses=1] |
| 14 | %TRAMP.216.sub = getelementptr [10 x i8]* %TRAMP.216, i32 0, i32 0 ; <i8*> [#uses=1] |
| 15 | %tmp3 = getelementptr %struct.FRAME.nest* %FRAME.0, i32 0, i32 0 ; <i32*> [#uses=1] |
| 16 | store i32 %n, i32* %tmp3, align 8 |
| 17 | %FRAME.06 = bitcast %struct.FRAME.nest* %FRAME.0 to i8* ; <i8*> [#uses=1] |
| 18 | %tramp = call i8* @llvm.init.trampoline( i8* %TRAMP.216.sub, i8* bitcast (i32 (%struct.FRAME.nest*, i32*)* @f to i8*), i8* %FRAME.06 ) ; <i8*> [#uses=1] |
| 19 | %tmp7 = getelementptr %struct.FRAME.nest* %FRAME.0, i32 0, i32 1 ; <i32 (i32*)**> [#uses=1] |
| 20 | %tmp89 = bitcast i8* %tramp to i32 (i32*)* ; <i32 (i32*)*> [#uses=2] |
| 21 | store i32 (i32*)* %tmp89, i32 (i32*)** %tmp7, align 8 |
| 22 | %tmp2.i = call i32 %tmp89( i32* nest null ) ; <i32> [#uses=1] |
| 23 | ret i32 %tmp2.i |
| 24 | } |