diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2012-12-30 02:33:22 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2012-12-30 02:33:22 +0000 |
commit | a6542923b8ad94d791a12d3d5ae3e62a611f0383 (patch) | |
tree | 39b262594c75aec6fa0957002f7be45d09080c7f /test/Transforms/StripSymbols | |
parent | 979aff6399a79d155e98bbbe064f4a183a237f23 (diff) |
Tests: rewrite 'opt ... %s' to 'opt ... < %s' so that opt does not emit a ModuleID
This is done to avoid odd test failures, like the one fixed in r171243.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171250 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/StripSymbols')
-rw-r--r-- | test/Transforms/StripSymbols/2010-08-25-crash.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/StripSymbols/2010-08-25-crash.ll b/test/Transforms/StripSymbols/2010-08-25-crash.ll index 3965c37822..7de5a02805 100644 --- a/test/Transforms/StripSymbols/2010-08-25-crash.ll +++ b/test/Transforms/StripSymbols/2010-08-25-crash.ll @@ -1,4 +1,4 @@ -; RUN: opt -strip-dead-debug-info -disable-output %s +; RUN: opt -strip-dead-debug-info -disable-output < %s define i32 @foo() nounwind ssp { entry: ret i32 0, !dbg !8 |