use bool operator shortcut; NFC

llvm-svn: 231123
This commit is contained in:
Sanjay Patel 2015-03-03 20:41:27 +00:00
parent e07b2a06d3
commit 948602bd17
1 changed files with 1 additions and 2 deletions

View File

@ -10134,8 +10134,7 @@ SDValue X86TargetLowering::LowerVSELECT(SDValue Op, SelectionDAG &DAG) const {
// Try to lower this to a blend-style vector shuffle. This can handle all
// constant condition cases.
SDValue BlendOp = lowerVSELECTtoVectorShuffle(Op, Subtarget, DAG);
if (BlendOp.getNode())
if (SDValue BlendOp = lowerVSELECTtoVectorShuffle(Op, Subtarget, DAG))
return BlendOp;
// Variable blends are only legal from SSE4.1 onward.