[llvm-commits] [llvm] r44404 - /llvm/trunk/test/ExecutionEngine/2004-12-04-LazyCompileFuncs.ll

Chris Lattner sabre at nondot.org
Wed Nov 28 10:20:49 PST 2007


Author: lattner
Date: Wed Nov 28 12:20:49 2007
New Revision: 44404

URL: http://llvm.org/viewvc/llvm-project?rev=44404&view=rev
Log:
make this test have a deterministic result.

Modified:
    llvm/trunk/test/ExecutionEngine/2004-12-04-LazyCompileFuncs.ll

Modified: llvm/trunk/test/ExecutionEngine/2004-12-04-LazyCompileFuncs.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/ExecutionEngine/2004-12-04-LazyCompileFuncs.ll?rev=44404&r1=44403&r2=44404&view=diff

==============================================================================
--- llvm/trunk/test/ExecutionEngine/2004-12-04-LazyCompileFuncs.ll (original)
+++ llvm/trunk/test/ExecutionEngine/2004-12-04-LazyCompileFuncs.ll Wed Nov 28 12:20:49 2007
@@ -1,5 +1,5 @@
 ; RUN: llvm-as < %s -f -o %t.bc
-; RUN: not lli -debug-only=jit %t.bc |& not grep {Finished CodeGen of .*Function: F}
+; RUN: lli -debug-only=jit %t.bc |& not grep {Finished CodeGen of .*Function: F}
 @.str_1 = internal constant [7 x i8] c"IN F!\0A\00"             ; <[7 x i8]*> [#uses=1]
 @.str_2 = internal constant [7 x i8] c"IN G!\0A\00"             ; <[7 x i8]*> [#uses=1]
 @Ptrs = internal constant [2 x void (...)*] [ void (...)* bitcast (void ()* @F to void (...)*), void (...)* bitcast (void ()* @G to void (...)*) ]           ; <[2 x void (...)*]*> [#uses=1]
@@ -25,5 +25,5 @@
         %tmp.5 = load void (...)** %tmp.4               ; <void (...)*> [#uses=1]
         %tmp.5_c = bitcast void (...)* %tmp.5 to void ()*               ; <void ()*> [#uses=1]
         call void %tmp.5_c( )
-        ret i32 undef
+        ret i32 0
 }





More information about the llvm-commits mailing list