소스 검색

Logic was reversed.

Manuel Novoa III 21 년 전
부모
커밋
1fba51dd34
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      libc/sysdeps/linux/mips/bits/machine-gmon.h

+ 2 - 2
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,