radeon/llvm: Fix incorrect return value in SelectADDRReg()

We need to return true when we match the pattern.
This commit is contained in:
Tom Stellard 2012-07-31 16:17:59 +00:00
parent 056b77ca22
commit be46874281

View file

@ -391,5 +391,5 @@ bool AMDGPUDAGToDAGISel::SelectADDRReg(SDValue Addr, SDValue& Base,
Base = Addr.getOperand(0);
Offset = Addr.getOperand(1);
return false;
return true;
}