RFA: hook signture patches (2/11): TARGET_ASM_DECLARE_CONSTANT_NAME

Joern Rennecke amylaar@spamcop.net
Wed Jun 30 02:11:00 GMT 2010


-------------- next part --------------
2010-06-29  Joern Rennecke  <joern.rennecke@embecosm.com>

	* target.def (declare_constant_name): Change exp to expr.  Use DEFHOOK.
	* doc/tm.texi.in (TARGET_ASM_DECLARE_CONSTANT_NAME): Use @hook.
	* doc/tm.texi: Regenerate.

Index: doc/tm.texi
===================================================================
--- doc/tm.texi	(revision 161563)
+++ doc/tm.texi	(working copy)
@@ -7780,7 +7779,7 @@ You may wish to use @code{ASM_OUTPUT_TYP
 @code{ASM_OUTPUT_SIZE_DIRECTIVE} in the definition of this macro.
 @end defmac
 
-@deftypefn {Target Hook} void TARGET_ASM_DECLARE_CONSTANT_NAME (FILE * @var{file}, const char * @var{name}, const_tree @var{expr}, HOST_WIDE_INT @var{size})
+@deftypefn {Target Hook} void TARGET_ASM_DECLARE_CONSTANT_NAME (FILE *@var{file}, const char *@var{name}, const_tree @var{expr}, HOST_WIDE_INT @var{size})
 A target hook to output to the stdio stream @var{file} any text necessary
 for declaring the name @var{name} of a constant which is being defined.  This
 target hook is responsible for outputting the label definition (perhaps using
Index: doc/tm.texi.in
===================================================================
--- doc/tm.texi.in	(revision 161563)
+++ doc/tm.texi.in	(working copy)
@@ -7779,7 +7778,7 @@ You may wish to use @code{ASM_OUTPUT_TYP
 @code{ASM_OUTPUT_SIZE_DIRECTIVE} in the definition of this macro.
 @end defmac
 
-@deftypefn {Target Hook} void TARGET_ASM_DECLARE_CONSTANT_NAME (FILE * @var{file}, const char * @var{name}, const_tree @var{expr}, HOST_WIDE_INT @var{size})
+@hook TARGET_ASM_DECLARE_CONSTANT_NAME
 A target hook to output to the stdio stream @var{file} any text necessary
 for declaring the name @var{name} of a constant which is being defined.  This
 target hook is responsible for outputting the label definition (perhaps using
Index: target.def
===================================================================
--- target.def	(revision 161563)
+++ target.def	(working copy)
@@ -160,11 +160,10 @@ DEFHOOK
  default_internal_label)
 
 /* Output label for the constant.  */
-/* ??? The documentation uses a different name for the hook argument EXP.  */
-DEFHOOK_UNDOC
+DEFHOOK
 (declare_constant_name,
  "",
- void, (FILE *file, const char *name, const_tree exp, HOST_WIDE_INT size),
+ void, (FILE *file, const char *name, const_tree expr, HOST_WIDE_INT size),
  default_asm_declare_constant_name)
 
 /* Emit a ttype table reference to a typeinfo object.  */


More information about the Gcc-patches mailing list