aboutsummaryrefslogtreecommitdiffstats
path: root/testing/php7-tideways_xhprof/timer_ppc64le.patch
diff options
context:
space:
mode:
authorAndy Postnikov <apostnikov@gmail.com>2019-02-03 03:34:30 +0200
committerAndy Postnikov <apostnikov@gmail.com>2019-02-03 03:34:30 +0200
commit2d7cbaa7a0838d0eab7176e61bbb3874892020f0 (patch)
treefb09611eecdc06d09504313bd4cf5d11b65717db /testing/php7-tideways_xhprof/timer_ppc64le.patch
parentb1e0a9912bf0a1d1eec6e0c405b39a6841132e71 (diff)
downloadaports-2d7cbaa7a0838d0eab7176e61bbb3874892020f0.tar.bz2
aports-2d7cbaa7a0838d0eab7176e61bbb3874892020f0.tar.xz
testing/php7-tideways_xhprof: upgrade to 5.0_beta3
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: