1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

[x86] Cleanup an unused variable by actually using it in the non-asserts

place where it was needed.

llvm-svn: 217854
This commit is contained in:
Chandler Carruth 2014-09-16 02:14:51 +00:00
parent acba0c3deb
commit 106bba0863

View File

@ -20036,7 +20036,7 @@ static SDValue combineShuffleToAddSub(SDNode *N, SelectionDAG &DAG) {
// FIXME: Munge the inputs through no-op shuffles that drop the undef lanes to
// allow nuking any instructions that feed only those lanes.
return DAG.getNode(X86ISD::ADDSUB, DL, N->getValueType(0), LHS, RHS);
return DAG.getNode(X86ISD::ADDSUB, DL, VT, LHS, RHS);
}
/// PerformShuffleCombine - Performs several different shuffle combines.