mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-24 08:24:33 +00:00
Add ISD::UNDEF node
Teach the SelectionDAG code how to expand and promote it Have PPC32 LowerCallTo generate ISD::UNDEF for int arg regs used up by fp arguments, but not shadowing their value. This allows us to do the right thing with both fixed and vararg floating point arguments. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20988 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1112,6 +1112,7 @@ const char *SDNode::getOperationName() const {
|
||||
case ISD::CopyToReg: return "CopyToReg";
|
||||
case ISD::CopyFromReg: return "CopyFromReg";
|
||||
case ISD::ImplicitDef: return "ImplicitDef";
|
||||
case ISD::UNDEF: return "undef";
|
||||
|
||||
case ISD::ADD: return "add";
|
||||
case ISD::SUB: return "sub";
|
||||
|
Reference in New Issue
Block a user