Pacify gcc-4.5, which warns (correctly) that these switches have

cases that are not part of the enum.

llvm-svn: 96477
This commit is contained in:
Duncan Sands 2010-02-17 14:52:22 +00:00
parent 624ee8da0d
commit fe562b6598
1 changed files with 2 additions and 2 deletions

View File

@ -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;