Nested try-catch-filter testcase.
[oota-llvm.git] / test / ExecutionEngine / simplesttest.ll
index f763e2fa18b3c9dd7b8a34269d60a283d164ff5b..1f578d29f27b3e35d4ba58a1dca5e6780c03149a 100644 (file)
@@ -1,19 +1,10 @@
-
-%X = global int 7
-%msg = internal global [13 x sbyte] c"Hello World\0A\00"
+; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc
+; RUN: lli %t.bc > /dev/null
 
 
 implementation
 
-declare void %printf([13 x sbyte]*)
-
-void %bar() {
-  call void %printf([13 x sbyte]* %msg)
-  ret void 
-}
-
-void %main() {
-        call void %bar()
-        ret void
+int %main() {
+        ret int 0
 }