Displaying 1 result from an estimated 1 matches for "ccopcode".
2012 Jul 16
3
[LLVMdev] RFC: LLVM incubation, or requirements for committing new backends
...DebugLoc DL = Op.getDebugLoc();
> + EVT VT = Op.getValueType();
> +
> + SDValue LHS = Op.getOperand(0);
> + SDValue RHS = Op.getOperand(1);
> + SDValue True = Op.getOperand(2);
> + SDValue False = Op.getOperand(3);
> + SDValue CC = Op.getOperand(4);
> + ISD::CondCode CCOpcode = cast<CondCodeSDNode>(CC)->get();
> + SDValue Temp;
> +
> + // LHS and RHS are guaranteed to be the same value type
> + EVT CompareVT = LHS.getValueType();
> +
> + // We need all the operands of SELECT_CC to have the same value type, so if
> + // necessary we nee...