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

@ -41,7 +41,7 @@ const bool TailCalls = true;
const bool TailCalls = false;
#endif
#if (defined AVIAN_USE_FRAME_POINTER) || (defined ARCH_powerpc)
#ifdef AVIAN_USE_FRAME_POINTER
const bool UseFramePointer = true;
#else
const bool UseFramePointer = false;

View File

@ -24,7 +24,6 @@ Architecture* makeArchitectureNative(vm::System* system, bool useNativeFeatures)
Architecture* makeArchitectureX86(vm::System* system, bool useNativeFeatures);
Architecture* makeArchitectureArm(vm::System* system, bool useNativeFeatures);
Architecture* makeArchitecturePowerpc(vm::System* system, bool useNativeFeatures);
} // namespace codegen
} // namespace avian