diff options
author | Dan Gohman <gohman@apple.com> | 2009-08-25 15:38:29 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-08-25 15:38:29 +0000 |
commit | fea1dd08044c85fb2f74b409704bb742dc817846 (patch) | |
tree | d74811fd5c8366813b3931db99b3767c1eefeb7c /test/Verifier | |
parent | baa26395ccf17fc988bb9cf62d6659ca8415ece9 (diff) | |
download | external_llvm-fea1dd08044c85fb2f74b409704bb742dc817846.zip external_llvm-fea1dd08044c85fb2f74b409704bb742dc817846.tar.gz external_llvm-fea1dd08044c85fb2f74b409704bb742dc817846.tar.bz2 |
Remove obsolete -f flags.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79992 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Verifier')
-rw-r--r-- | test/Verifier/2008-03-01-AllocaSized.ll | 2 | ||||
-rw-r--r-- | test/Verifier/2008-08-22-MemCpyAlignment.ll | 2 | ||||
-rw-r--r-- | test/Verifier/SelfReferential.ll | 2 | ||||
-rw-r--r-- | test/Verifier/aliasing-chain.ll | 2 | ||||
-rw-r--r-- | test/Verifier/byval-4.ll | 2 | ||||
-rw-r--r-- | test/Verifier/invoke-2.ll | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/test/Verifier/2008-03-01-AllocaSized.ll b/test/Verifier/2008-03-01-AllocaSized.ll index eb96ced..079a75d 100644 --- a/test/Verifier/2008-03-01-AllocaSized.ll +++ b/test/Verifier/2008-03-01-AllocaSized.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as -f %s -o /dev/null |& grep {Cannot allocate unsized type} +; RUN: not llvm-as %s -o /dev/null |& grep {Cannot allocate unsized type} ; PR2113 define void @test() { diff --git a/test/Verifier/2008-08-22-MemCpyAlignment.ll b/test/Verifier/2008-08-22-MemCpyAlignment.ll index 6bad2d1..aaf69ae 100644 --- a/test/Verifier/2008-08-22-MemCpyAlignment.ll +++ b/test/Verifier/2008-08-22-MemCpyAlignment.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as -f %s -o /dev/null |& grep {alignment argument of memory intrinsics must be a constant int} +; RUN: not llvm-as %s -o /dev/null |& grep {alignment argument of memory intrinsics must be a constant int} ; PR2318 define void @x(i8* %a, i8* %src, i64 %len, i32 %align) nounwind { diff --git a/test/Verifier/SelfReferential.ll b/test/Verifier/SelfReferential.ll index c013bfb..70154b7 100644 --- a/test/Verifier/SelfReferential.ll +++ b/test/Verifier/SelfReferential.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as -f %s -o /dev/null |& grep {Only PHI nodes may reference their own value} +; RUN: not llvm-as %s -o /dev/null |& grep {Only PHI nodes may reference their own value} ; Test that self referential instructions are not allowed diff --git a/test/Verifier/aliasing-chain.ll b/test/Verifier/aliasing-chain.ll index 53b929b..fc5ef1c 100644 --- a/test/Verifier/aliasing-chain.ll +++ b/test/Verifier/aliasing-chain.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as -f %s -o /dev/null |& grep {Aliasing chain should end with function or global variable} +; RUN: not llvm-as %s -o /dev/null |& grep {Aliasing chain should end with function or global variable} ; Test that alising chain does not create a cycle diff --git a/test/Verifier/byval-4.ll b/test/Verifier/byval-4.ll index d69f66c..b6f9c67 100644 --- a/test/Verifier/byval-4.ll +++ b/test/Verifier/byval-4.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null %struct.foo = type { i64 } declare void @h(%struct.foo* byval %num) diff --git a/test/Verifier/invoke-2.ll b/test/Verifier/invoke-2.ll index 9201f4d..0145935 100644 --- a/test/Verifier/invoke-2.ll +++ b/test/Verifier/invoke-2.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as %s -f |& grep {not verify as correct} +; RUN: not llvm-as %s |& grep {not verify as correct} ; PR1042 define i32 @foo() { |