]> git.saurik.com Git - apple/xnu.git/blobdiff - tools/tests/xnu_quick_test/helpers/arch.c
xnu-1699.32.7.tar.gz
[apple/xnu.git] / tools / tests / xnu_quick_test / helpers / arch.c
index fdf66fb53ba1944f40de607125e1e86c96a21d2c..1e4f867a5eaf13b3a430c339c460d15fb6fdc1b5 100644 (file)
@@ -6,12 +6,6 @@
  */
 int main()
 {
  */
 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__ */
 #if __i386__
        return CPU_TYPE_I386;
 #endif /* __i386__ */
@@ -21,4 +15,3 @@ int main()
        /* unrecognized type */
        return -1;
 }
        /* unrecognized type */
        return -1;
 }
-