Fix typo: intepreter->interpreter.
[oota-llvm.git] / test / ExecutionEngine / test-call.ll
index 6699bb65bae2f8d1d3aadce2f43d070767fca713..a1b3cd66a3b7d5d7bd926a3bc04debd2026babec 100644 (file)
@@ -1,7 +1,22 @@
+; RUN: llvm-as %s -f -o %t.bc
+; RUN: lli %t.bc > /dev/null
 
-declare void %foo()
+declare void @exit(i32)
 
-void %test1() {
-       call void %foo()
+define i32 @test(i8 %C, i16 %S) {
+       %X = trunc i16 %S to i8         ; <i8> [#uses=1]
+       %Y = zext i8 %X to i32          ; <i32> [#uses=1]
+       ret i32 %Y
+}
+
+define void @FP(void (i32)* %F) {
+       %X = call i32 @test( i8 123, i16 1024 )         ; <i32> [#uses=1]
+       call void %F( i32 %X )
        ret void
 }
+
+define i32 @main() {
+       call void @FP( void (i32)* @exit )
+       ret i32 1
+}
+