Remove Predicate_* calls from Mips

llvm-svn: 112919
This commit is contained in:
Jakob Stoklund Olesen 2010-09-03 00:35:13 +00:00
parent af7534f084
commit 44a2797e02
1 changed files with 3 additions and 2 deletions

View File

@ -184,8 +184,9 @@ SDNode *MipsDAGToDAGISel::SelectLoadFp64(SDNode *N) {
if (!Subtarget.isMips1() || NVT != MVT::f64)
return NULL;
if (!Predicate_unindexedload(N) ||
!Predicate_load(N))
LoadSDNode *LN = cast<LoadSDNode>(N);
if (LN->getExtensionType() != ISD::NON_EXTLOAD ||
LN->getAddressingMode() != ISD::UNINDEXED)
return NULL;
SDValue Chain = N->getOperand(0);