Avoid warnings from compilers that think you can drop off the end of a fully covered switch.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@177656 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer 2013-03-21 19:45:46 +00:00
Родитель 7b79384718
Коммит 4c49f7b473
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -113,6 +113,8 @@ Tool *ToolChain::getTool(Action::ActionClass AC) const {
case Action::MigrateJobClass:
return getClang();
}
llvm_unreachable("Invalid tool kind.");
}
Tool &ToolChain::SelectTool(const JobAction &JA) const {