1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

Revert r112938 "Fix comment", which depends on r112934, which introduced some

infinite loop and select failures.

llvm-svn: 112999
This commit is contained in:
Daniel Dunbar 2010-09-03 19:38:08 +00:00
parent 4ece67890b
commit c8af4f3a0a

View File

@ -9787,9 +9787,9 @@ static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
}
/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
/// generation and convert it from being a bunch of shuffles and extracts
/// to a simple store and scalar loads to extract the elements.
/// PerformShuffleCombine - Detect vector gather/scatter index generation
/// and convert it from being a bunch of shuffles and extracts to a simple
/// store and scalar loads to extract the elements.
static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
const TargetLowering &TLI) {
SDValue InputVector = N->getOperand(0);