Silence a GCC warning

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232923 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Majnemer 2015-03-22 21:27:10 +00:00
parent 00edfaecf0
commit a36668c3f0

View File

@ -164,8 +164,7 @@ enum X86_32RelType { RT32_32, RT32_16, RT32_8 };
static X86_32RelType getType32(X86_64RelType T) {
switch (T) {
default:
//case RT64_64:
case RT64_64:
llvm_unreachable("Unimplemented");
case RT64_32:
case RT64_32S:
@ -175,6 +174,7 @@ static X86_32RelType getType32(X86_64RelType T) {
case RT64_8:
return RT32_8;
}
llvm_unreachable("unexpected relocation type!");
}
static unsigned getRelocType32(MCSymbolRefExpr::VariantKind Modifier,