Add missing cases to SDNode::getOperationName(). Patch by Micah Villmow.

llvm-svn: 146548
This commit is contained in:
Eli Friedman 2011-12-14 02:28:54 +00:00
parent 87975df580
commit 6512cd4366
1 changed files with 5 additions and 0 deletions

View File

@ -6151,6 +6151,11 @@ std::string SDNode::getOperationName(const SelectionDAG *G) const {
case ISD::SETLT: return "setlt";
case ISD::SETLE: return "setle";
case ISD::SETNE: return "setne";
case ISD::SETTRUE: return "settrue";
case ISD::SETTRUE2: return "settrue2";
case ISD::SETFALSE: return "setfalse";
case ISD::SETFALSE2: return "setfalse2";
}
}
}