diff options
author | Duncan Sands <baldrick@free.fr> | 2007-11-28 15:36:27 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2007-11-28 15:36:27 +0000 |
commit | 0497916c881eabc47d3468d9e12a81fc54a6d16f (patch) | |
tree | 47ea25112dbd54500f016b473faa3cd4eb1bbc8b | |
parent | ff306287fffdc61a487057c18c7db63d4805cdc7 (diff) | |
download | bcm5719-llvm-0497916c881eabc47d3468d9e12a81fc54a6d16f.tar.gz bcm5719-llvm-0497916c881eabc47d3468d9e12a81fc54a6d16f.zip |
This test somehow got an extra "not" during the
recent stderr updates.
llvm-svn: 44401
-rw-r--r-- | llvm/test/ExecutionEngine/2004-12-04-LazyCompileFuncs.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/ExecutionEngine/2004-12-04-LazyCompileFuncs.ll b/llvm/test/ExecutionEngine/2004-12-04-LazyCompileFuncs.ll index 4f20157f390..6b1dc8d2e00 100644 --- a/llvm/test/ExecutionEngine/2004-12-04-LazyCompileFuncs.ll +++ b/llvm/test/ExecutionEngine/2004-12-04-LazyCompileFuncs.ll @@ -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: llvm-as < %s -f -o %t.bc +; 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] |