diff options
author | Hubert Tong <hubert.reinterpretcast@gmail.com> | 2016-11-21 21:53:01 +0000 |
---|---|---|
committer | Hubert Tong <hubert.reinterpretcast@gmail.com> | 2016-11-21 21:53:01 +0000 |
commit | 1e5677649c69ec101748387c760467b996488db2 (patch) | |
tree | ba4802c10c27ff966c84a13722f518a4f2f5285b | |
parent | c89911ba0235fa78c6ef72b95229042f62f89f08 (diff) | |
download | bcm5719-llvm-1e5677649c69ec101748387c760467b996488db2.tar.gz bcm5719-llvm-1e5677649c69ec101748387c760467b996488db2.zip |
reassociate-deadinst.ll: avoid accidental match on path
Pipe from stdin to avoid accidentally matching on the path.
llvm-svn: 287583
-rw-r--r-- | llvm/test/Transforms/Reassociate/reassociate-deadinst.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Transforms/Reassociate/reassociate-deadinst.ll b/llvm/test/Transforms/Reassociate/reassociate-deadinst.ll index 6a12c4723f2..df314d571d3 100644 --- a/llvm/test/Transforms/Reassociate/reassociate-deadinst.ll +++ b/llvm/test/Transforms/Reassociate/reassociate-deadinst.ll @@ -1,4 +1,4 @@ -; RUN: opt -inline -functionattrs -reassociate %s -S | FileCheck %s +; RUN: opt < %s -inline -functionattrs -reassociate -S | FileCheck %s ; CHECK-NOT: func1 ; CHECK-LABEL: main |