[llvm] r219047 - [x86] Slap a triple on this test since it is poking around at the stack
Chandler Carruth
chandlerc at gmail.com
Fri Oct 3 21:22:55 PDT 2014
Author: chandlerc
Date: Fri Oct 3 23:22:55 2014
New Revision: 219047
URL: http://llvm.org/viewvc/llvm-project?rev=219047&view=rev
Log:
[x86] Slap a triple on this test since it is poking around at the stack
and calling conventions. Otherwise its too hard to craft a usefully
generic set of assertions.
Modified:
llvm/trunk/test/CodeGen/X86/vec_extract.ll
Modified: llvm/trunk/test/CodeGen/X86/vec_extract.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/vec_extract.ll?rev=219047&r1=219046&r2=219047&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/vec_extract.ll (original)
+++ llvm/trunk/test/CodeGen/X86/vec_extract.ll Fri Oct 3 23:22:55 2014
@@ -1,5 +1,7 @@
; RUN: llc < %s -mcpu=corei7 -march=x86 -mattr=+sse2,-sse4.1 | FileCheck %s
+target triple = "x86_64-unknown-linux-gnu"
+
define void @test1(<4 x float>* %F, float* %f) nounwind {
; CHECK-LABEL: test1:
; CHECK: # BB#0: # %entry
More information about the llvm-commits
mailing list