summaryrefslogtreecommitdiff
path: root/config/sysdeps/cycles.h
diff options
context:
space:
mode:
Diffstat (limited to 'config/sysdeps/cycles.h')
-rw-r--r--config/sysdeps/cycles.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/config/sysdeps/cycles.h b/config/sysdeps/cycles.h
deleted file mode 100644
index 62d86f1..0000000
--- a/config/sysdeps/cycles.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef _jack_sysdep_cycles_h_
-#define _jack_sysdep_cycles_h_
-
-#if defined(__i386__)
-
-/* technically, i386 doesn't have a cycle counter, but
- running JACK on a real i386 seems like a ridiculuous
- target and gcc defines this for the entire x86 family
- including the [456]86 that do have the counter.
- */
-
-#include <config/cpu/i386/cycles.h>
-
-#elif defined(__x86_64)
-
-#include <config/cpu/i486/cycles.h>
-
-#elif defined(__powerpc__) || defined(__ppc__) /* linux and OSX gcc use different tokens */
-
-#include <config/cpu/powerpc/cycles.h>
-
-#else
-
-#include <config/cpu/generic/cycles.h>
-
-#endif /* processor selection */
-
-#endif /* _jack_sysdep_cycles_h_ */