projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
885a87e
)
Add some missing node names
author
Chris Lattner
<sabre@nondot.org>
Sun, 2 Apr 2006 02:41:18 +0000
(
02:41
+0000)
committer
Chris Lattner
<sabre@nondot.org>
Sun, 2 Apr 2006 02:41:18 +0000
(
02:41
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27339
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/SelectionDAG/SelectionDAG.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index dda5cfe772f7fe857540d7a3bacba928e3f14f40..9389ca32bf996a91c12a323a83572be3dab5e11a 100644
(file)
--- a/
lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/
lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@
-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";