I cast, therefore I think I know what I'm doing.
[llvm/msp430.git] / test / ExecutionEngine / test-call.ll
bloba1b3cd66a3b7d5d7bd926a3bc04debd2026babec
1 ; RUN: llvm-as %s -f -o %t.bc
2 ; RUN: lli %t.bc > /dev/null
4 declare void @exit(i32)
6 define i32 @test(i8 %C, i16 %S) {
7         %X = trunc i16 %S to i8         ; <i8> [#uses=1]
8         %Y = zext i8 %X to i32          ; <i32> [#uses=1]
9         ret i32 %Y
12 define void @FP(void (i32)* %F) {
13         %X = call i32 @test( i8 123, i16 1024 )         ; <i32> [#uses=1]
14         call void %F( i32 %X )
15         ret void
18 define i32 @main() {
19         call void @FP( void (i32)* @exit )
20         ret i32 1