diff options
author | Chris Lattner <sabre@nondot.org> | 2005-04-02 04:58:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-04-02 04:58:41 +0000 |
commit | ff9fd0a99c00a5ec17b867365bd2c22fb4061363 (patch) | |
tree | 96609ba11d4fc6a4e1b628a4532f6973ee1f01c3 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 7366fd39727180a3261dd99e3797f89979d74e66 (diff) |
print fneg/fabs
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21008 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 005bb72575..105d39d1fa 100644 --- 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"; |