[X86] Add a return to the end of a switch to prevent an accidental fallthrough in the future.

llvm-svn: 318330
This commit is contained in:
Craig Topper 2017-11-15 20:42:47 +00:00
parent b73593f2aa
commit 54b57b0dd8
1 changed files with 1 additions and 0 deletions

View File

@ -24900,6 +24900,7 @@ void X86TargetLowering::ReplaceNodeResults(SDNode *N,
ToVecInt, DAG.getIntPtrConstant(i, dl)));
Results.push_back(DAG.getBuildVector(DstVT, dl, Elts));
return;
}
}
}