From: Benjamin Kramer Date: Thu, 12 Jul 2012 09:36:29 +0000 (+0000) Subject: Use %s instead of the explicit name, the latter doesn't work in out-of-tree builds. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=51bf934e4d3470238606087f18ec604184a8b149;p=oota-llvm.git 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 --- diff --git a/test/CodeGen/X86/rdrand.ll b/test/CodeGen/X86/rdrand.ll index 7bb25b3b1ba..04dc0715758 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()