Fix a default on covered switch found by -Wcovered-switch-default

Introduced in r178207

llvm-svn: 178212
This commit is contained in:
David Blaikie 2013-03-28 02:30:37 +00:00
parent 1e8c3b8c02
commit c66c07d444
1 changed files with 1 additions and 2 deletions

View File

@ -233,9 +233,8 @@ StringRef Entry::getKindName(Entry::KindType kind) {
case Macro: case Macro:
return "macro"; return "macro";
break; break;
default:
return "unknown";
} }
llvm_unreachable("invalid Entry kind");
} }
struct HeaderEntry { struct HeaderEntry {