aboutsummaryrefslogtreecommitdiff
path: root/gcc/libgcc2.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/libgcc2.c')
-rw-r--r--gcc/libgcc2.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c
index 9376fa0..08bfc34 100644
--- a/gcc/libgcc2.c
+++ b/gcc/libgcc2.c
@@ -1310,30 +1310,10 @@ BLOCK_PROFILER_CODE
static struct bb *bb_head;
-static int num_digits (long long value, int base) __attribute__ ((const));
-
-/* Return the number of digits needed to print a value */
-/* __inline__ */ static int num_digits (long long value, int base)
-{
- int minus = (value < 0 && base != 16);
- unsigned long long v = (minus) ? -value : value;
- int ret = minus;
-
- do
- {
- v /= base;
- ret++;
- }
- while (v);
-
- return ret;
-}
-
void
__bb_exit_func (void)
{
FILE *da_file;
- long time_value;
int i;
struct bb *ptr;