diff options
author | Steven Bosscher <steven@gcc.gnu.org> | 2012-06-29 13:56:40 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2012-06-29 13:56:40 +0000 |
commit | 67a0732fb2228a8db59ee136a89206960fa2085a (patch) | |
tree | 36c3751f3d21d3e17f422f895bf566b68a28fcfd /gcc/doc | |
parent | a1ebcd97b84956788ffc7dcd0950785f9395ff19 (diff) | |
download | gcc-67a0732fb2228a8db59ee136a89206960fa2085a.zip gcc-67a0732fb2228a8db59ee136a89206960fa2085a.tar.gz gcc-67a0732fb2228a8db59ee136a89206960fa2085a.tar.bz2 |
system.h (IFCVT_EXTRA_FIELDS): Poison.
* system.h (IFCVT_EXTRA_FIELDS): Poison.
(IFCVT_INIT_EXTRA_FIELDS): Poison.
* basic-block.h (struct ce_if_block): Remove IFCVT_EXTRA_FIELDS.
* ifcvt.c (find_if_header): Use IFCVT_MACHDEP_INIT instead of
IFCVT_INIT_EXTRA_FIELDS.
* gengtype-parse.c (struct_field_seq): Remove obsolete comment.
* config/frv/frv.h (IFCVT_INIT_EXTRA_FIELDS): Rename to
IFCVT_MACHDEP_INIT.
* config/frv/frv.c (frv_ifcvt_init_extra_fields): Rename to
frv_ifcvt_machdep_init.
* doc/tm.texi.in (IFCVT_INIT_EXTRA_FIELDS, IFCVT_EXTRA_FIELDS):
Remove documentation.
(IFCVT_MACHDEP_INIT): Document.
* doc/tm.texi: Regenerate.
From-SVN: r189074
Diffstat (limited to 'gcc/doc')
-rw-r--r-- | gcc/doc/tm.texi | 13 | ||||
-rw-r--r-- | gcc/doc/tm.texi.in | 13 |
2 files changed, 8 insertions, 18 deletions
diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index 314d50b..282bc148 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -10871,15 +10871,10 @@ can be found in the @code{struct ce_if_block} structure that is pointed to by @var{ce_info}. @end defmac -@defmac IFCVT_INIT_EXTRA_FIELDS (@var{ce_info}) -A C expression to initialize any extra fields in a @code{struct ce_if_block} -structure, which are defined by the @code{IFCVT_EXTRA_FIELDS} macro. -@end defmac - -@defmac IFCVT_EXTRA_FIELDS -If defined, it should expand to a set of field declarations that will be -added to the @code{struct ce_if_block} structure. These should be initialized -by the @code{IFCVT_INIT_EXTRA_FIELDS} macro. +@defmac IFCVT_MACHDEP_INIT (@var{ce_info}) +A C expression to initialize any machine specific data for if-conversion +of the if-block in the @code{struct ce_if_block} structure that is pointed +to by @var{ce_info}. @end defmac @deftypefn {Target Hook} void TARGET_MACHINE_DEPENDENT_REORG (void) diff --git a/gcc/doc/tm.texi.in b/gcc/doc/tm.texi.in index ac8df24..6f97b28 100644 --- a/gcc/doc/tm.texi.in +++ b/gcc/doc/tm.texi.in @@ -10745,15 +10745,10 @@ can be found in the @code{struct ce_if_block} structure that is pointed to by @var{ce_info}. @end defmac -@defmac IFCVT_INIT_EXTRA_FIELDS (@var{ce_info}) -A C expression to initialize any extra fields in a @code{struct ce_if_block} -structure, which are defined by the @code{IFCVT_EXTRA_FIELDS} macro. -@end defmac - -@defmac IFCVT_EXTRA_FIELDS -If defined, it should expand to a set of field declarations that will be -added to the @code{struct ce_if_block} structure. These should be initialized -by the @code{IFCVT_INIT_EXTRA_FIELDS} macro. +@defmac IFCVT_MACHDEP_INIT (@var{ce_info}) +A C expression to initialize any machine specific data for if-conversion +of the if-block in the @code{struct ce_if_block} structure that is pointed +to by @var{ce_info}. @end defmac @hook TARGET_MACHINE_DEPENDENT_REORG |