Highlight that getMergeValues optimization is

being suppressed here.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52952 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan Sands 2008-07-01 08:00:49 +00:00
parent 57ce0319b7
commit d9ad8abc8e

View File

@ -4517,7 +4517,8 @@ SDNode *X86TargetLowering::ExpandFP_TO_SINT(SDNode *N, SelectionDAG &DAG) {
SDOperand Res = DAG.getLoad(VT, FIST, StackSlot, NULL, 0);
// Use a MERGE_VALUES node to drop the chain result value.
return DAG.getMergeValues(DAG.getVTList(VT), &Res, 1, false).Val;
return DAG.getMergeValues(DAG.getVTList(VT), &Res, 1,
false /* Require a node with one-result */).Val;
}
SDOperand X86TargetLowering::LowerFABS(SDOperand Op, SelectionDAG &DAG) {