X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/2d21ac55c334faf3a56e5634905ed6987fc787d4..13f56ec4e58bf8687e2a68032c093c0213dd519b:/tools/tests/xnu_quick_test/helpers/arch.c 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; } -