1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Add some missing node names

llvm-svn: 27339
This commit is contained in:
Chris Lattner 2006-04-02 02:41:18 +00:00
parent 99a3213376
commit 5eefd8e0b3

View File

@ -2749,6 +2749,15 @@ const char *SDNode::getOperationName(const SelectionDAG *G) const {
case ISD::VADD: return "vadd";
case ISD::VSUB: return "vsub";
case ISD::VMUL: return "vmul";
case ISD::VADD: return "vadd";
case ISD::VSUB: return "vsub";
case ISD::VMUL: return "vmul";
case ISD::VSDIV: return "vsdiv";
case ISD::VUDIV: return "vudiv";
case ISD::VAND: return "vand";
case ISD::VOR: return "vor";
case ISD::VXOR: return "vxor";
case ISD::SETCC: return "setcc";
case ISD::SELECT: return "select";