From 913e79f5da4cac6754a29068086a9cb7aa3508b1 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sat, 14 Aug 2004 06:55:25 +0000 Subject: [PATCH] * scripts/output-format.sed: Handle default case of three-argument OUTPUT_FORMAT. * sysdeps/arm/machine-gmon.h (mcount_internal): Mark as __attribute_used__. --- ChangeLog | 8 ++++++++ sysdeps/arm/machine-gmon.h | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5b6b668173..2b16346422 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2004-08-13 Daniel Jacobowitz + + * scripts/output-format.sed: Handle default case of three-argument + OUTPUT_FORMAT. + + * sysdeps/arm/machine-gmon.h (mcount_internal): Mark as + __attribute_used__. + 2004-08-13 Ulrich Drepper * nss/getent.c (ahosts_keys): ai_canonname is NULL for all but the diff --git a/sysdeps/arm/machine-gmon.h b/sysdeps/arm/machine-gmon.h index 039dfd9514..fa3f65237d 100644 --- a/sysdeps/arm/machine-gmon.h +++ b/sysdeps/arm/machine-gmon.h @@ -32,7 +32,7 @@ void _mcount (void); weak_alias (_mcount, mcount) #endif -static void mcount_internal (u_long frompc, u_long selfpc); +static void mcount_internal (u_long frompc, u_long selfpc) __attribute_used__; #define _MCOUNT_DECL(frompc, selfpc) \ static void mcount_internal (u_long frompc, u_long selfpc)