From: Chris Lattner Date: Sat, 2 Apr 2005 04:58:41 +0000 (+0000) Subject: print fneg/fabs X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ff9fd0a99c00a5ec17b867365bd2c22fb4061363;p=oota-llvm.git print fneg/fabs git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21008 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 005bb725753..105d39d1fa5 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";