mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-23 05:29:23 +00:00
Pacify gcc-4.5, which warns (correctly) that these switches have
cases that are not part of the enum. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96477 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a8572bbd39
commit
9a7795cbed
@ -51,7 +51,7 @@ static bool isVirtualSection(const MCSection &Section) {
|
||||
return (Type == MCSectionMachO::S_ZEROFILL);
|
||||
}
|
||||
|
||||
static unsigned getFixupKindLog2Size(MCFixupKind Kind) {
|
||||
static unsigned getFixupKindLog2Size(unsigned Kind) {
|
||||
switch (Kind) {
|
||||
default: llvm_unreachable("invalid fixup kind!");
|
||||
case X86::reloc_pcrel_1byte:
|
||||
@ -64,7 +64,7 @@ static unsigned getFixupKindLog2Size(MCFixupKind Kind) {
|
||||
}
|
||||
}
|
||||
|
||||
static bool isFixupKindPCRel(MCFixupKind Kind) {
|
||||
static bool isFixupKindPCRel(unsigned Kind) {
|
||||
switch (Kind) {
|
||||
default:
|
||||
return false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user