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:
12dfdb4
)
Add missing cases to SDNode::getOperationName(). Patch by Micah Villmow.
author
Eli Friedman
<eli.friedman@gmail.com>
Wed, 14 Dec 2011 02:28:54 +0000
(
02:28
+0000)
committer
Eli Friedman
<eli.friedman@gmail.com>
Wed, 14 Dec 2011 02:28:54 +0000
(
02:28
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146548
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 0b507b42719935e24cd024f7cff0327c1ab2b7a4..e49fc7d3490894b58977e275eab404e2a3bc06d8 100644
(file)
--- a/
lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/
lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@
-6151,6
+6151,11
@@
std::string SDNode::getOperationName(const SelectionDAG *G) const {
case ISD::SETLT: return "setlt";
case ISD::SETLE: return "setle";
case ISD::SETNE: return "setne";
+
+ case ISD::SETTRUE: return "settrue";
+ case ISD::SETTRUE2: return "settrue2";
+ case ISD::SETFALSE: return "setfalse";
+ case ISD::SETFALSE2: return "setfalse2";
}
}
}