remove powerpc support

This commit is contained in:
Joshua Warner
2014-04-29 13:26:40 -06:00
parent 32d25d79fd
commit 41adb74eb1
35 changed files with 12 additions and 4196 deletions

View File

@ -114,7 +114,6 @@ public:
enum Architecture {
x86 = AVIAN_ARCH_X86,
x86_64 = AVIAN_ARCH_X86_64,
PowerPC = AVIAN_ARCH_POWERPC,
Arm = AVIAN_ARCH_ARM,
UnknownArch = AVIAN_ARCH_UNKNOWN
};
@ -132,10 +131,6 @@ public:
inline bool operator == (const PlatformInfo& other) {
return format == other.format && arch == other.arch;
}
inline bool isLittleEndian() {
return arch != PowerPC;
}
};
class Platform {