mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
Avoid Enum Compare Warnings
Avoid a compiler warning about comparing disjoint enums but casting them to int first. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172577 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
83d5853833
commit
af50dda410
@ -792,7 +792,8 @@ public:
|
||||
// Methods for type inquiry through isa, cast, and dyn_cast
|
||||
bool isDyldType() const { return isDyldELFObject; }
|
||||
static inline bool classof(const Binary *v) {
|
||||
return v->getType() == getELFType(ELFT::TargetEndianness == support::little,
|
||||
return v->getType() == getELFType(static_cast<int>(ELFT::TargetEndianness)
|
||||
== static_cast<int>(support::little),
|
||||
ELFT::Is64Bits);
|
||||
}
|
||||
};
|
||||
@ -2379,7 +2380,8 @@ unsigned ELFObjectFile<ELFT>::getArch() const {
|
||||
case ELF::EM_HEXAGON:
|
||||
return Triple::hexagon;
|
||||
case ELF::EM_MIPS:
|
||||
return (ELFT::TargetEndianness == support::little) ?
|
||||
return (static_cast<int>(ELFT::TargetEndianness)
|
||||
== static_cast<int>(support::little)) ?
|
||||
Triple::mipsel : Triple::mips;
|
||||
case ELF::EM_PPC64:
|
||||
return Triple::ppc64;
|
||||
|
Loading…
Reference in New Issue
Block a user