[globalisel][legalizer] Fix a fallthrough case in the unittests debug printing

llvm-svn: 323711
This commit is contained in:
Daniel Sanders 2018-01-29 23:47:41 +00:00
parent 98457980f5
commit 942f1d3e29

View File

@ -28,7 +28,7 @@ operator<<(std::ostream &OS, const LegalizeAction Act) {
case Libcall: OS << "Libcall"; break;
case Custom: OS << "Custom"; break;
case Unsupported: OS << "Unsupported"; break;
case NotFound: OS << "NotFound";
case NotFound: OS << "NotFound"; break;
case UseLegacyRules: OS << "UseLegacyRules"; break;
}
return OS;