From 1fba51dd347e5d2d8f97d7e9f865f9edd310c328 Mon Sep 17 00:00:00 2001 From: Manuel Novoa III Date: Sun, 15 Aug 2004 01:55:02 +0000 Subject: Logic was reversed. --- libc/sysdeps/linux/mips/bits/machine-gmon.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libc') diff --git a/libc/sysdeps/linux/mips/bits/machine-gmon.h b/libc/sysdeps/linux/mips/bits/machine-gmon.h index 244718ed0..6bece2be5 100644 --- a/libc/sysdeps/linux/mips/bits/machine-gmon.h +++ b/libc/sysdeps/linux/mips/bits/machine-gmon.h @@ -19,10 +19,10 @@ #if __GNUC__ < 3 || (__GNUC__ == 3 && __GNUC_MINOR__ <= 1) #define _MCOUNT_DECL(frompc,selfpc) \ -static void __attribute_used__ __mcount (u_long frompc, u_long selfpc) +static void __mcount (u_long frompc, u_long selfpc) #else #define _MCOUNT_DECL(frompc,selfpc) \ -static void __mcount (u_long frompc, u_long selfpc) +static void __attribute_used__ __mcount (u_long frompc, u_long selfpc) #endif /* Call __mcount with our the return PC for our caller, -- cgit v1.2.3