Commit d68c98e1 by Andreas Jaeger

libgcc2.c (__bb_exit_func): Remove unused variable.

	* libgcc2.c (__bb_exit_func): Remove unused variable.
	(num_digits): Remove unused function.

From-SVN: r48215
parent 121308d4
2001-12-20 Andreas Jaeger <aj@suse.de>
* libgcc2.c (__bb_exit_func): Remove unused variable.
(num_digits): Remove unused function.
2001-12-20 Alan Shieh <ashieh@hkn.eecs.berkeley.edu>
* config/arm/arm.c (arm_output_epilogue): Changed IP restore
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment