summaryrefslogtreecommitdiff
path: root/test/Feature
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-04-14 09:43:30 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-04-14 09:43:30 +0000
commit0837479aa78d37fae63bcf29aaf4ecf9bddbdca7 (patch)
tree5aae61cd83ea5d5b969f8ec9bfaa3e4bc0a9c235 /test/Feature
parent316abe4f22f5e59524aea19b3486978dba34a92c (diff)
downloadllvm-0837479aa78d37fae63bcf29aaf4ecf9bddbdca7.tar.gz
llvm-0837479aa78d37fae63bcf29aaf4ecf9bddbdca7.tar.bz2
llvm-0837479aa78d37fae63bcf29aaf4ecf9bddbdca7.tar.xz
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.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Feature/llvm2cpp.ll b/test/Feature/llvm2cpp.ll
index 095bd993ab..63d3402f17 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