1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00

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 3257bff430
commit eb387f51bc

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";
}
}
}