Skip to content

Commit

Permalink
[x86] fix formatting; NFC
Browse files Browse the repository at this point in the history
(test commit llvm#2 migrating to git)

llvm-svn: 353533
  • Loading branch information
rotateright committed Feb 8, 2019
1 parent 8a43680 commit e9cc26a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/lib/Target/X86/X86ISelLowering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32950,7 +32950,7 @@ bool X86TargetLowering::SimplifyDemandedVectorEltsForTargetNode(
return false;
// Don't bother broadcasting if we just need the 0'th element.
if (DemandedElts == 1) {
if(Src.getValueType() != VT)
if (Src.getValueType() != VT)
Src = widenSubVector(VT.getSimpleVT(), Src, false, Subtarget, TLO.DAG,
SDLoc(Op));
return TLO.CombineTo(Op, Src);
Expand Down

0 comments on commit e9cc26a

Please sign in to comment.