This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] ppc64 fix typo in libc-symbols.h


Found this (cut/paste) typo in testing.
		
2002-09-27  Steven Munroe  <sjmunroe@us.ibm.com>

	* include/libc-symbols.h (__hidden_dot_weak1): Fix typo.  Replace
	ASM_GLOBAL_DIRECTIVE with .weak.
	
	
diff -rupPN libc23-cvstip-20020923/include/libc-symbols.h libc23-ppc64-stat/include/libc-symbols.h
--- libc23-cvstip-20020923/include/libc-symbols.h	Thu Sep 19 17:23:53 2002
+++ libc23-ppc64-stat/include/libc-symbols.h	Tue Sep 24 09:52:42 2002
@@ -615,7 +615,7 @@
   C_SYMBOL_NAME (alias) = C_SYMBOL_NAME (original)
 #    ifdef HAVE_ASM_GLOBAL_DOT_NAME
 #     define __hidden_dot_weak1(original, alias)	ASM_LINE_SEP	\
-  ASM_GLOBAL_DIRECTIVE C_SYMBOL_DOT_NAME (alias) ASM_LINE_SEP	\
+  .weak C_SYMBOL_DOT_NAME (alias) ASM_LINE_SEP	\
   C_SYMBOL_DOT_NAME (alias) = C_SYMBOL_DOT_NAME (original)
 #    else
 #     define __hidden_dot_weak1(original, alias)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]