fix and un-xfail X86/vec_ss_load_fold.ll

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96720 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2010-02-21 04:53:34 +00:00
parent b92a23fcfc
commit f1c6428164
2 changed files with 2 additions and 4 deletions

View File

@ -1345,9 +1345,8 @@ bool X86DAGToDAGISel::SelectScalarSSELoadXXX(SDNode *Root,
PatternNodeWithChain = N.getOperand(0);
if (ISD::isNON_EXTLoad(PatternNodeWithChain.getNode()) &&
PatternNodeWithChain.hasOneUse() &&
IsProfitableToFold(N.getOperand(0), PatternNodeWithChain.getNode(),
Root) &&
IsLegalToFold(N.getOperand(0), PatternNodeWithChain.getNode(), Root)) {
IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
IsLegalToFold(N.getOperand(0), N.getNode(), Root)) {
LoadSDNode *LD = cast<LoadSDNode>(PatternNodeWithChain);
if (!SelectAddr(Root, LD->getBasePtr(), Base, Scale, Index, Disp,Segment))
return false;

View File

@ -1,5 +1,4 @@
; RUN: llc < %s -march=x86 -mattr=+sse,+sse2,+sse41 | FileCheck %s
; XFAIL: *
target datalayout = "e-p:32:32"
target triple = "i686-apple-darwin8.7.2"