diff options
Diffstat (limited to 'sysdeps/powerpc')
-rw-r--r-- | sysdeps/powerpc/powerpc32/power4/hp-timing.h | 5 | ||||
-rw-r--r-- | sysdeps/powerpc/powerpc64/hp-timing.h | 5 |
2 files changed, 0 insertions, 10 deletions
diff --git a/sysdeps/powerpc/powerpc32/power4/hp-timing.h b/sysdeps/powerpc/powerpc32/power4/hp-timing.h index f1e3bebe66..2124e02081 100644 --- a/sysdeps/powerpc/powerpc32/power4/hp-timing.h +++ b/sysdeps/powerpc/powerpc32/power4/hp-timing.h @@ -42,8 +42,6 @@ - hp_timing_t: This is the type for variables used to store the time values. - - HP_TIMING_ZERO: clear `hp_timing_t' object. - - HP_TIMING_NOW: place timestamp for current time in variable given as parameter. @@ -76,9 +74,6 @@ /* We use 64bit values for the times. */ typedef unsigned long long int hp_timing_t; -/* Set timestamp value to zero. */ -#define HP_TIMING_ZERO(Var) (Var) = (0) - /* That's quite simple. Use the `mftb' instruction. Note that the value might not be 100% accurate since there might be some more instructions running in this moment. This could be changed by using a barrier like diff --git a/sysdeps/powerpc/powerpc64/hp-timing.h b/sysdeps/powerpc/powerpc64/hp-timing.h index f1efa121d7..c773541e67 100644 --- a/sysdeps/powerpc/powerpc64/hp-timing.h +++ b/sysdeps/powerpc/powerpc64/hp-timing.h @@ -42,8 +42,6 @@ - hp_timing_t: This is the type for variables used to store the time values. - - HP_TIMING_ZERO: clear `hp_timing_t' object. - - HP_TIMING_NOW: place timestamp for current time in variable given as parameter. @@ -76,9 +74,6 @@ /* We use 64bit values for the times. */ typedef unsigned long long int hp_timing_t; -/* Set timestamp value to zero. */ -#define HP_TIMING_ZERO(Var) (Var) = (0) - /* That's quite simple. Use the `mftb' instruction. Note that the value might not be 100% accurate since there might be some more instructions running in this moment. This could be changed by using a barrier like |