Nuke the old JIT.
[oota-llvm.git] / test / ExecutionEngine / MCJIT / remote / cross-module-a.ll
index 97bb96af5b7408af8556e5752ed767c1cf928e54..c31572361d3d41f62a3509bd4a6ce944d03b593d 100644 (file)
@@ -1,15 +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
-
-; XFAIL: mips
+; 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
 }
-