Fix more instances of dropped fast math flags when optimizing FADD instructions....
[oota-llvm.git] / test / ExecutionEngine / simplesttest.ll
index 48d7688bcc62b399ceb935c4d7928af7106d1e48..85c171532752f24a2fd30f1f0178ccab47385184 100644 (file)
@@ -1,19 +1,6 @@
+; RUN: %lli %s > /dev/null
 
-%X = global int 7
-%msg = internal global [13 x sbyte] c"Hello World\0A\00"
-
-
-implementation
-
-declare void %printf([13 x sbyte]*)
-
-void %bar() {
-  call void %printf([13 x sbyte]* %msg)
-  ret void 
-}
-
-int %main() {
-        call void %bar()
-        ret int 0
+define i32 @main() {
+       ret i32 0
 }