mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-15 08:58:51 +00:00
Added hook to let targets custom lower splitting of illegal vectors
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150550 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
15b4497333
commit
bbfa5c02be
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user