[uClibc-cvs] CVS update of uClibc/libc/sysdeps/linux/mips/bits (machine-gmon.h)

Manuel Novoa III mjn3 at codepoet.org
Sun Aug 15 01:55:04 UTC 2004


    Date: Saturday, August 14, 2004 @ 19:55:04
  Author: mjn3
    Path: /var/cvs/uClibc/libc/sysdeps/linux/mips/bits

Modified: machine-gmon.h (1.2 -> 1.3)

Logic was reversed.


Index: uClibc/libc/sysdeps/linux/mips/bits/machine-gmon.h
diff -u uClibc/libc/sysdeps/linux/mips/bits/machine-gmon.h:1.2 uClibc/libc/sysdeps/linux/mips/bits/machine-gmon.h:1.3
--- uClibc/libc/sysdeps/linux/mips/bits/machine-gmon.h:1.2	Tue Apr 15 18:59:00 2003
+++ uClibc/libc/sysdeps/linux/mips/bits/machine-gmon.h	Sat Aug 14 19:55:02 2004
@@ -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,



More information about the uClibc-cvs mailing list