about summary refs log tree commit diff
path: root/sysdeps/sparc/sparc64
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2014-06-25 12:15:19 -0700
committerRichard Henderson <rth@twiddle.net>2014-07-03 08:38:21 -0700
commitc39323e9d2fb6697d5d8739ad9b7959c88a6d5a1 (patch)
treefa3141a230fb12f9a5a3d25d9a47063bf79c4228 /sysdeps/sparc/sparc64
parent850e0e032b77ee833a9f98d1bef3f50769bdd0c7 (diff)
downloadglibc-c39323e9d2fb6697d5d8739ad9b7959c88a6d5a1.tar.gz
glibc-c39323e9d2fb6697d5d8739ad9b7959c88a6d5a1.tar.xz
glibc-c39323e9d2fb6697d5d8739ad9b7959c88a6d5a1.zip
Removing HP_TIMING_ACCUM as unused
Diffstat (limited to 'sysdeps/sparc/sparc64')
-rw-r--r--sysdeps/sparc/sparc64/hp-timing.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/sysdeps/sparc/sparc64/hp-timing.h b/sysdeps/sparc/sparc64/hp-timing.h
index 0773efb610..9e49b7841b 100644
--- a/sysdeps/sparc/sparc64/hp-timing.h
+++ b/sysdeps/sparc/sparc64/hp-timing.h
@@ -48,21 +48,6 @@ typedef unsigned long int hp_timing_t;
 
 #define HP_TIMING_DIFF(Diff, Start, End)	(Diff) = ((End) - (Start))
 
-#define HP_TIMING_ACCUM(Sum, Diff)				\
-do {								\
-  hp_timing_t __diff = (Diff) - GLRO(dl_hp_timing_overhead);	\
-  hp_timing_t tmp1, tmp2;					\
-  __asm__ __volatile__("1: ldx	[%3], %0\n\t"			\
-		       "add	%0, %2, %1\n\t"			\
-		       "casx	[%3], %0,  %1\n\t"		\
-		       "cmp	%0, %1\n\t"			\
-		       "bne,pn	%%xcc, 1b\n\t"			\
-		       " nop"					\
-		       : "=&r" (tmp1), "=&r" (tmp2)		\
-		       : "r" (__diff), "r" (&(Sum))		\
-		       : "memory", "g1", "g5", "g6");		\
-} while(0)
-
 #define HP_TIMING_ACCUM_NT(Sum, Diff)	(Sum) += (Diff)
 
 #define HP_TIMING_PRINT(Buf, Len, Val) \