diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-07-12 09:36:29 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-07-12 09:36:29 +0000 |
commit | 51bf934e4d3470238606087f18ec604184a8b149 (patch) | |
tree | fee6ad6f76d2f84734b44ee6bba9d5c94275c40b | |
parent | b9bee0499553358e64c34cfcbd32380ac7fb452e (diff) | |
download | external_llvm-51bf934e4d3470238606087f18ec604184a8b149.zip external_llvm-51bf934e4d3470238606087f18ec604184a8b149.tar.gz external_llvm-51bf934e4d3470238606087f18ec604184a8b149.tar.bz2 |
Use %s instead of the explicit name, the latter doesn't work in out-of-tree builds.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160120 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/X86/rdrand.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/rdrand.ll b/test/CodeGen/X86/rdrand.ll index 7bb25b3..04dc071 100644 --- a/test/CodeGen/X86/rdrand.ll +++ b/test/CodeGen/X86/rdrand.ll @@ -1,4 +1,4 @@ -; RUN: llc < rdrand.ll -march=x86-64 -mattr=+rdrand | FileCheck %s +; RUN: llc < %s -march=x86-64 -mattr=+rdrand | FileCheck %s declare {i16, i32} @llvm.x86.rdrand.16() declare {i32, i32} @llvm.x86.rdrand.32() declare {i64, i32} @llvm.x86.rdrand.64() |