forked from OSchip/llvm-project
[X86] Fix SDLoc initialization
Fixes -Wparentheses warning, in this case indicating a genuine bug.
This commit is contained in:
parent
a8db806d52
commit
c90ea87cfd
|
@ -28740,7 +28740,7 @@ SDValue X86TargetLowering::LowerF128Call(SDValue Op, SelectionDAG &DAG,
|
|||
|
||||
// Custom split CVTPS2PH with wide types.
|
||||
static SDValue LowerCVTPS2PH(SDValue Op, SelectionDAG &DAG) {
|
||||
SDLoc(dl);
|
||||
SDLoc dl(Op);
|
||||
EVT VT = Op.getValueType();
|
||||
SDValue Lo, Hi;
|
||||
std::tie(Lo, Hi) = DAG.SplitVectorOperand(Op.getNode(), 0);
|
||||
|
|
Loading…
Reference in New Issue