arm: Fix compiling on arm
authorDavid Schleef <ds@schleef.org>
Sun, 20 Sep 2009 04:40:59 +0000 (21:40 -0700)
committerDavid Schleef <ds@schleef.org>
Sun, 20 Sep 2009 04:40:59 +0000 (21:40 -0700)
orc/orccpu-arm.c

index 3819833..1430527 100644 (file)
@@ -72,6 +72,7 @@ orc_cpu_arm_getflags_cpuinfo (char *cpuinfo)
 
   flags = strsplit(cpuinfo_flags);
   for (f = flags; *f; f++) {
+#if 0
     if (strcmp (*f, "edsp") == 0) {
       ORC_DEBUG ("cpu feature %s", *f);
       orc_cpu_flags |= ORC_CPU_FLAG_EDSP;
@@ -80,6 +81,7 @@ orc_cpu_arm_getflags_cpuinfo (char *cpuinfo)
       ORC_DEBUG ("cpu feature %s", *f);
       orc_cpu_flags |= ORC_CPU_FLAG_VFP;
     }
+#endif
 
     free (*f);
   }