forked from OSchip/llvm-project
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:
parent
2da8ed9241
commit
3f229eaf3f
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue