Add an unreachable to silence warning - the switch is actually

fully enumerated.

llvm-svn: 117647
This commit is contained in:
Eric Christopher 2010-10-29 09:26:59 +00:00
parent dd7bb199b7
commit 91d7b90185
1 changed files with 2 additions and 0 deletions

View File

@ -797,6 +797,8 @@ MatchAndEmitInstruction(SMLoc IDLoc,
case Match_MnemonicFail:
return Error(IDLoc, "unrecognized instruction mnemonic");
}
llvm_unreachable("Implement any new match types added!");
}