diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2013-01-22 14:39:21 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2013-01-22 14:39:21 +0000 |
commit | 44ee2e7a23f34cab39b38c189e28d5b91d887e21 (patch) | |
tree | 9d42de36d0642895a2af05a42828974ea225e76f /llvm/test/Transforms | |
parent | fdf3fa69c27c456723400770a969225e164ca0e4 (diff) | |
download | bcm5719-llvm-44ee2e7a23f34cab39b38c189e28d5b91d887e21.tar.gz bcm5719-llvm-44ee2e7a23f34cab39b38c189e28d5b91d887e21.zip |
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.
llvm-svn: 173163
Diffstat (limited to 'llvm/test/Transforms')
-rw-r--r-- | llvm/test/Transforms/ObjCARC/ensure-that-exception-unwind-path-is-visited.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Transforms/ObjCARC/ensure-that-exception-unwind-path-is-visited.ll b/llvm/test/Transforms/ObjCARC/ensure-that-exception-unwind-path-is-visited.ll index 0c306346ec2..1fd03e7d9c6 100644 --- a/llvm/test/Transforms/ObjCARC/ensure-that-exception-unwind-path-is-visited.ll +++ b/llvm/test/Transforms/ObjCARC/ensure-that-exception-unwind-path-is-visited.ll @@ -1,4 +1,4 @@ -; RUN: opt -objc-arc -S %s | FileCheck %s +; RUN: opt -objc-arc -S < %s | FileCheck %s ; rdar://11744105 ; bugzilla://14584 |