[llvm-commits] CVS: llvm/test/Transforms/TailDup/if-tail-dup.ll

Reid Spencer reid at x10sys.com
Mon Apr 16 10:38:17 PDT 2007



Changes in directory llvm/test/Transforms/TailDup:

if-tail-dup.ll updated: 1.3 -> 1.4
---
Log message:

For PR1319: http://llvm.org/PR1319 :
Remove && from the end of the lines to prevent tests from throwing run
lines into the background. Also, clean up places where the same command
is run multiple times by using a temporary file.


---
Diffs of the changes:  (+4 -4)

 if-tail-dup.ll |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)


Index: llvm/test/Transforms/TailDup/if-tail-dup.ll
diff -u llvm/test/Transforms/TailDup/if-tail-dup.ll:1.3 llvm/test/Transforms/TailDup/if-tail-dup.ll:1.4
--- llvm/test/Transforms/TailDup/if-tail-dup.ll:1.3	Sat Apr 14 23:59:55 2007
+++ llvm/test/Transforms/TailDup/if-tail-dup.ll	Mon Apr 16 12:36:08 2007
@@ -1,7 +1,7 @@
-; RUN: llvm-upgrade < %s | llvm-as | opt -tailduplicate | llc -march=x86 | \
-; RUN:    grep {je } &&
-; RUN: llvm-upgrade < %s | llvm-as | opt -tailduplicate | llc -march=x86 | \
-; RUN:    not grep jmp
+; RUN: llvm-upgrade < %s | llvm-as | opt -tailduplicate | \
+; RUN:   llc -march=x86 -o %t -f
+; RUN: grep {je } %t
+; RUN: not grep jmp %t
 ; END.
 ; This should have no unconditional jumps in it.  The C source is:
 






More information about the llvm-commits mailing list