diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-04-14 09:43:30 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-04-14 09:43:30 +0000 |
commit | 0837479aa78d37fae63bcf29aaf4ecf9bddbdca7 (patch) | |
tree | 5aae61cd83ea5d5b969f8ec9bfaa3e4bc0a9c235 /test/Feature | |
parent | 316abe4f22f5e59524aea19b3486978dba34a92c (diff) | |
download | external_llvm-0837479aa78d37fae63bcf29aaf4ecf9bddbdca7.zip external_llvm-0837479aa78d37fae63bcf29aaf4ecf9bddbdca7.tar.gz external_llvm-0837479aa78d37fae63bcf29aaf4ecf9bddbdca7.tar.bz2 |
Fix a missing -f caught by the new llvm.exp script.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35987 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Feature')
-rw-r--r-- | test/Feature/llvm2cpp.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Feature/llvm2cpp.ll b/test/Feature/llvm2cpp.ll index 095bd99..63d3402 100644 --- a/test/Feature/llvm2cpp.ll +++ b/test/Feature/llvm2cpp.ll @@ -1,5 +1,5 @@ ; RUN: llvm-as < %s | llvm-dis > %t1.ll -; RUN: llvm-as < %s | llvm2cpp -gen-program -o %t2.cpp - +; RUN: llvm-as < %s | llvm2cpp -gen-program -o %t2.cpp - -f ; RUN: %link -o %t2.exe %t2.cpp -lLLVMCore -lLLVMSupport -lLLVMbzip2 -lLLVMSystem -lstdc++ ; RUN: %t2.exe > %t2.ll ; RUN: diff %t1.ll %t2.ll |