Fixed MSVC compile warning issue introduced in r232837

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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232913 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Simon Pilgrim 2015-03-22 13:38:36 +00:00
parent 42a84b54bf
commit 3445d7bea0

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: