print fneg/fabs
authorChris Lattner <sabre@nondot.org>
Sat, 2 Apr 2005 04:58:41 +0000 (04:58 +0000)
committerChris 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

index 005bb725753fb7cfcf698df3e40eade9a996ac06..105d39d1fa59e68bb3f3596cafd1097e97f7f232 100644 (file)
@@ -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";