diff options
author | Tom Stellard <[email protected]> | 2012-06-27 21:09:51 +0000 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-06-29 18:46:18 +0000 |
commit | c01199dfc0d30ad4c20cc4a2ebe3cdcbc74debb6 (patch) | |
tree | 9b14e6403e06928727cd63b16def2529d950860f /src/gallium/drivers/radeon/AMDGPUISelLowering.cpp | |
parent | 2c485cda2062ca2b9af89ea62618515d960c7904 (diff) |
radeon/llvm: Expand UDIV and UREM nodes
Diffstat (limited to 'src/gallium/drivers/radeon/AMDGPUISelLowering.cpp')
-rw-r--r-- | src/gallium/drivers/radeon/AMDGPUISelLowering.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/gallium/drivers/radeon/AMDGPUISelLowering.cpp b/src/gallium/drivers/radeon/AMDGPUISelLowering.cpp index 9d076bdf568..544de0fa312 100644 --- a/src/gallium/drivers/radeon/AMDGPUISelLowering.cpp +++ b/src/gallium/drivers/radeon/AMDGPUISelLowering.cpp @@ -33,8 +33,10 @@ AMDGPUTargetLowering::AMDGPUTargetLowering(TargetMachine &TM) : setOperationAction(ISD::FEXP2, MVT::f32, Legal); setOperationAction(ISD::FRINT, MVT::f32, Legal); - setOperationAction(ISD::UDIV, MVT::i32, Custom); + + setOperationAction(ISD::UDIV, MVT::i32, Expand); setOperationAction(ISD::UDIVREM, MVT::i32, Custom); + setOperationAction(ISD::UREM, MVT::i32, Expand); } SDValue AMDGPUTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) @@ -44,9 +46,6 @@ SDValue AMDGPUTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) default: return AMDILTargetLowering::LowerOperation(Op, DAG); case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG); case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG); - case ISD::UDIV: - return DAG.getNode(ISD::UDIVREM, Op.getDebugLoc(), Op.getValueType(), - Op.getOperand(0), Op.getOperand(1)).getValue(0); case ISD::UDIVREM: return LowerUDIVREM(Op, DAG); } } |