X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/2d21ac55c334faf3a56e5634905ed6987fc787d4..39236c6e673c41db228275375ab7fdb0f837b292:/tools/tests/xnu_quick_test/helpers/arch.c?ds=sidebyside diff --git a/tools/tests/xnu_quick_test/helpers/arch.c b/tools/tests/xnu_quick_test/helpers/arch.c index fdf66fb53..1e4f867a5 100644 --- a/tools/tests/xnu_quick_test/helpers/arch.c +++ b/tools/tests/xnu_quick_test/helpers/arch.c @@ -6,12 +6,6 @@ */ int main() { -#if __ppc__ - return CPU_TYPE_POWERPC; -#endif /* __ppc__ */ -#if __ppc64__ - return CPU_TYPE_POWERPC64; -#endif /* __ppc64__ */ #if __i386__ return CPU_TYPE_I386; #endif /* __i386__ */ @@ -21,4 +15,3 @@ int main() /* unrecognized type */ return -1; } -