Nuke the old JIT.
[oota-llvm.git] / test / ExecutionEngine / MCJIT / remote / cross-module-a.ll
index 79efb3cfc77a361a1fc72f54ccb4135be49d1374..c31572361d3d41f62a3509bd4a6ce944d03b593d 100644 (file)
@@ -1,16 +1,12 @@
-; RUN: %lli_mcjit -extra-module=%p/Inputs/cross-module-b.ll -disable-lazy-compilation=true -remote-mcjit -mcjit-remote-process=lli-child-target %s > /dev/null
-
-; This fails because __main is not resolved in remote mcjit.
-; XFAIL: cygwin,mingw32
+; RUN: %lli -extra-module=%p/Inputs/cross-module-b.ll -disable-lazy-compilation=true -remote-mcjit -mcjit-remote-process=lli-child-target%exeext %s > /dev/null
 
 declare i32 @FB()
 
-define i32 @FA() {
+define i32 @FA() nounwind {
   ret i32 0
 }
 
-define i32 @main() {
+define i32 @main() nounwind {
   %r = call i32 @FB( )   ; <i32> [#uses=1]
   ret i32 %r
 }
-