[llvm-commits] [llvm] r79994 - /llvm/trunk/test/lib/llvm2cpp.exp
Dan Gohman
gohman at apple.com
Tue Aug 25 08:45:45 PDT 2009
Author: djg
Date: Tue Aug 25 10:45:44 2009
New Revision: 79994
URL: http://llvm.org/viewvc/llvm-project?rev=79994&view=rev
Log:
Fix a few typos from the removal of -f.
Modified:
llvm/trunk/test/lib/llvm2cpp.exp
Modified: llvm/trunk/test/lib/llvm2cpp.exp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/lib/llvm2cpp.exp?rev=79994&r1=79993&r2=79994&view=diff
==============================================================================
--- llvm/trunk/test/lib/llvm2cpp.exp (original)
+++ llvm/trunk/test/lib/llvm2cpp.exp Tue Aug 25 10:45:44 2009
@@ -48,7 +48,7 @@
# Run llvm-as/llvm-dis
set pipeline llvm-as|llvm-dis
set retval [ catch {
- exec -keepnewline $llvmas < $test -o - | $llvmdis-o $assembly 2>/dev/null } msg ]
+ exec -keepnewline $llvmas < $test -o - | $llvmdis -o $assembly 2>/dev/null } msg ]
if { $retval != 0 } {
fail "$test: $pipeline returned $retval\n$msg"
@@ -65,7 +65,7 @@
}
set retval [ catch {
- exec -keepnewline $llc -march=cpp-o $generated < $bytecode 2>/dev/null } msg]
+ exec -keepnewline $llc -march=cpp -o $generated < $bytecode 2>/dev/null } msg]
if { $retval != 0 } {
fail "$test: llvm2cpp returned $retval\n$msg"
More information about the llvm-commits
mailing list