From: Dan Gohman Date: Tue, 25 Aug 2009 15:45:44 +0000 (+0000) Subject: Fix a few typos from the removal of -f. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=47dd94e542f78b518b4fa70c0c00b1be7e3cf5a6;p=oota-llvm.git Fix a few typos from the removal of -f. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79994 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/lib/llvm2cpp.exp b/test/lib/llvm2cpp.exp index 3e260b90845..f4530338ee2 100644 --- a/test/lib/llvm2cpp.exp +++ b/test/lib/llvm2cpp.exp @@ -48,7 +48,7 @@ proc llvm2cpp-test { files } { # 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 @@ proc llvm2cpp-test { files } { } 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"