aboutsummaryrefslogtreecommitdiffstats
path: root/testing/php7-tideways_xhprof/timer_ppc64le.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/php7-tideways_xhprof/timer_ppc64le.patch')
-rw-r--r--testing/php7-tideways_xhprof/timer_ppc64le.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/testing/php7-tideways_xhprof/timer_ppc64le.patch b/testing/php7-tideways_xhprof/timer_ppc64le.patch
deleted file mode 100644
index b70ca08ee9..0000000000
--- a/testing/php7-tideways_xhprof/timer_ppc64le.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- a/timer.h
-+++ b/timer.h
-@@ -75,8 +75,12 @@
- return 0;
- #endif
- case TIDEWAYS_XHPROF_CLOCK_TSC:
-+#if !defined (__powerpc64__)
- asm volatile("rdtsc" : "=a" (a), "=d" (d));
- (val) = ((uint64)a) | (((uint64)d)<<32);
-+#else
-+ asm volatile ("mftb %0" : "=r" (val));
-+#endif
- return val / timebase_factor;
-
- default: