1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

Added hook to let targets custom lower splitting of illegal vectors

llvm-svn: 150550
This commit is contained in:
Pete Cooper 2012-02-15 00:55:31 +00:00
parent 889c968001
commit bfec627c63

View File

@ -404,6 +404,10 @@ void DAGTypeLegalizer::SplitVectorResult(SDNode *N, unsigned ResNo) {
N->dump(&DAG);
dbgs() << "\n");
SDValue Lo, Hi;
// See if the target wants to custom expand this node.
if (CustomLowerNode(N, N->getValueType(ResNo), true))
return;
switch (N->getOpcode()) {
default: