diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2004-08-15 01:55:02 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2004-08-15 01:55:02 +0000 |
commit | 1fba51dd347e5d2d8f97d7e9f865f9edd310c328 (patch) | |
tree | ae27d488f030c6e27227056936e5e73b9392897e /libc/sysdeps/linux | |
parent | e8b9579a76b2b7899cee5302f51d913747840644 (diff) |
Logic was reversed.
Diffstat (limited to 'libc/sysdeps/linux')
-rw-r--r-- | libc/sysdeps/linux/mips/bits/machine-gmon.h | 4 |
1 files changed, 2 insertions, 2 deletions
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, |