print fneg/fabs

llvm-svn: 21008
This commit is contained in:
Chris Lattner 2005-04-02 04:58:41 +00:00
parent b3183de8c6
commit c4a2046a88
1 changed files with 5 additions and 0 deletions

View File

@ -1122,6 +1122,11 @@ const char *SDNode::getOperationName() const {
case ISD::ImplicitDef: return "ImplicitDef"; case ISD::ImplicitDef: return "ImplicitDef";
case ISD::UNDEF: return "undef"; 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::ADD: return "add";
case ISD::SUB: return "sub"; case ISD::SUB: return "sub";
case ISD::MUL: return "mul"; case ISD::MUL: return "mul";