[llvm] r214330 - Fix test case introduced in r214322
Louis Gerbarg
lgg at apple.com
Wed Jul 30 13:26:10 PDT 2014
Author: louis
Date: Wed Jul 30 15:26:09 2014
New Revision: 214330
URL: http://llvm.org/viewvc/llvm-project?rev=214330&view=rev
Log:
Fix test case introduced in r214322
This patch adds an explicit triple to the test case introduced by r214322. This
should fix build failueres that are occuring on bots that are cross building.
Modified:
llvm/trunk/test/CodeGen/X86/x86-mixed-alignment-dagcombine.ll
Modified: llvm/trunk/test/CodeGen/X86/x86-mixed-alignment-dagcombine.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/x86-mixed-alignment-dagcombine.ll?rev=214330&r1=214329&r2=214330&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/x86-mixed-alignment-dagcombine.ll (original)
+++ llvm/trunk/test/CodeGen/X86/x86-mixed-alignment-dagcombine.ll Wed Jul 30 15:26:09 2014
@@ -1,4 +1,4 @@
-; RUN: llc -mcpu=core2 -mattr=+64bit,+sse2 < %s | FileCheck %s
+; RUN: llc -mtriple=x86_64-apple-macosx10.9.0 -mcpu=core2 -mattr=+64bit,+sse2 < %s | FileCheck %s
; DAGCombine may choose to rewrite 2 loads feeding a select as a select of
; addresses feeding a load. This test ensures that when it does that it creates
More information about the llvm-commits
mailing list