diff options
author | Tom Stellard <[email protected]> | 2012-07-18 12:47:11 -0400 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-07-27 17:08:07 +0000 |
commit | 87272e9e2560a88352cf54d164507569ac43e502 (patch) | |
tree | e483bd797607ceb648ac7eb44fce58d78efe0307 /src/gallium/drivers/radeon/R600ISelLowering.h | |
parent | 92823fb72abf1539bdb545fedc5525e9fc0b04cc (diff) |
radeon/llvm: Move lowering of BR_CC node to R600ISelLowering
SI will handle BR_CC different from R600, so we need to move it
out of the shared instruction selector.
Diffstat (limited to 'src/gallium/drivers/radeon/R600ISelLowering.h')
-rw-r--r-- | src/gallium/drivers/radeon/R600ISelLowering.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/R600ISelLowering.h b/src/gallium/drivers/radeon/R600ISelLowering.h index 9eb536c5f6f..f57ee977888 100644 --- a/src/gallium/drivers/radeon/R600ISelLowering.h +++ b/src/gallium/drivers/radeon/R600ISelLowering.h @@ -38,6 +38,8 @@ private: void lowerImplicitParameter(MachineInstr *MI, MachineBasicBlock &BB, MachineRegisterInfo & MRI, unsigned dword_offset) const; + SDValue LowerBR_CC(SDValue Op, SelectionDAG &DAG) const; + /// LowerROTL - Lower ROTL opcode to BITALIGN SDValue LowerROTL(SDValue Op, SelectionDAG &DAG) const; |