Fixed MSVC compile warning issue introduced in r232837

- was reporting 'warning C4715: 'getType32' : not all control paths return a value'

llvm-svn: 232913
This commit is contained in:
Simon Pilgrim 2015-03-22 13:38:36 +00:00
parent 2da8ed9241
commit 3f229eaf3f
1 changed files with 2 additions and 1 deletions

View File

@ -164,7 +164,8 @@ enum X86_32RelType { RT32_32, RT32_16, RT32_8 };
static X86_32RelType getType32(X86_64RelType T) {
switch (T) {
case RT64_64:
default:
//case RT64_64:
llvm_unreachable("Unimplemented");
case RT64_32:
case RT64_32S: