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:
7366fd3
)
print fneg/fabs
author
Chris Lattner
<sabre@nondot.org>
Sat, 2 Apr 2005 04:58:41 +0000
(
04:58
+0000)
committer
Chris Lattner
<sabre@nondot.org>
Sat, 2 Apr 2005 04:58:41 +0000
(
04:58
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21008
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 005bb725753fb7cfcf698df3e40eade9a996ac06..105d39d1fa59e68bb3f3596cafd1097e97f7f232 100644
(file)
--- a/
lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/
lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@
-1122,6
+1122,11
@@
const char *SDNode::getOperationName() const {
case ISD::ImplicitDef: return "ImplicitDef";
case ISD::UNDEF: return "undef";
+ // Unary operators
+ case ISD::FABS: return "fabs";
+ case ISD::FNEG: return "fneg";
+
+ // Binary operators
case ISD::ADD: return "add";
case ISD::SUB: return "sub";
case ISD::MUL: return "mul";