New testcase for PR141
[oota-llvm.git] / test / ExecutionEngine / test-call.ll
index a69d8504577fe4818e277cc3b58c6acf9f60c2a8..50f0e6e9e1b7d5ad5aa152a96952486f4e7e1f8e 100644 (file)
@@ -1,9 +1,14 @@
 
 declare void %exit(int)
 
+int %test(sbyte %C, short %S) {
+  %X = cast short %S to int
+  ret int %X
+}
 
 void %FP(void(int) * %F) {
-       call void %F(int 0)
+       %X = call int %test(sbyte 123, short 1024)
+       call void %F(int %X)
        ret void
 }