arm: disable unused CPU detection
authorDavid Schleef <ds@schleef.org>
Thu, 24 Jun 2010 19:52:15 +0000 (12:52 -0700)
committerDavid Schleef <ds@schleef.org>
Thu, 24 Jun 2010 19:53:52 +0000 (12:53 -0700)
orc/orccpu-arm.c

index 347cc69..fb72086 100644 (file)
@@ -57,6 +57,7 @@ orc_profile_stamp_xscale(void)
 }
 #endif
 
+#ifdef unused
 static void
 orc_cpu_arm_getflags_cpuinfo (char *cpuinfo)
 {
@@ -117,10 +118,12 @@ get_proc_cpuinfo (void)
 
   return cpuinfo;
 }
+#endif
 
 void
 orc_cpu_detect_arch(void)
 {
+#ifdef unused
 #ifdef __linux__
   int arm_implementer = 0;
   char *cpuinfo;
@@ -159,6 +162,7 @@ orc_cpu_detect_arch(void)
   orc_cpu_arm_getflags_cpuinfo (cpuinfo);
   free (cpuinfo);
 #endif
+#endif
 }
 #endif