[llvm-commits] CVS: llvm/test/QMTest/llvm.py
Chris Lattner
lattner at cs.uiuc.edu
Thu May 27 15:34:02 PDT 2004
Changes in directory llvm/test/QMTest:
llvm.py updated: 1.26 -> 1.27
---
Log message:
Stop passing the -q option to opt
---
Diffs of the changes: (+2 -2)
Index: llvm/test/QMTest/llvm.py
diff -u llvm/test/QMTest/llvm.py:1.26 llvm/test/QMTest/llvm.py:1.27
--- llvm/test/QMTest/llvm.py:1.26 Fri Feb 13 17:34:59 2004
+++ llvm/test/QMTest/llvm.py Thu May 27 15:30:29 2004
@@ -517,7 +517,7 @@
#
p=' | '
- estatus = os.system (as + ' < ' + file + p + opt + ' -q -inline -dce ' + flags + p + dis + p + as + ' > ' + 'bc.1')
+ estatus = os.system (as + ' < ' + file + p + opt + ' -inline -dce ' + flags + p + dis + p + as + ' > ' + 'bc.1')
if (not ((os.WIFEXITED(estatus)) and ((os.WEXITSTATUS(estatus)) == 0))):
result.Fail()
return;
@@ -525,7 +525,7 @@
#
# Now, attempt to optimize the the program again.
#
- estatus=os.system (opt + ' -q ' + flags + ' < ' + 'bc.1 > ' + 'bc.2')
+ estatus=os.system (opt + ' ' + flags + ' < ' + 'bc.1 > ' + 'bc.2')
if (not ((os.WIFEXITED(estatus)) and ((os.WEXITSTATUS(estatus)) == 0))):
result.Fail()
return
More information about the llvm-commits
mailing list