forked from OSchip/llvm-project
[SelectionDAG] Add node creation debug message to getMemIntrinsicNode.
llvm-svn: 367771
This commit is contained in:
parent
fcd549a7d8
commit
76f0f2e0f0
|
@ -6604,7 +6604,9 @@ SDValue SelectionDAG::getMemIntrinsicNode(unsigned Opcode, const SDLoc &dl,
|
|||
createOperands(N, Ops);
|
||||
}
|
||||
InsertNode(N);
|
||||
return SDValue(N, 0);
|
||||
SDValue V(N, 0);
|
||||
NewSDValueDbgMsg(V, "Creating new node: ", this);
|
||||
return V;
|
||||
}
|
||||
|
||||
SDValue SelectionDAG::getLifetimeNode(bool IsStart, const SDLoc &dl,
|
||||
|
|
Loading…
Reference in New Issue