diff options
author | Eric Christopher <echristo@gcc.gnu.org> | 2004-12-07 00:53:27 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gcc.gnu.org> | 2004-12-07 00:53:27 +0000 |
commit | e09ec16630ef1ec3dc7d6b512d3eb019e40d0424 (patch) | |
tree | 841c304ac4d8a9e013d7c546a49afefa676b7528 /gcc | |
parent | 07d3cebe24d2923070ec831e8a05d9ba6e4dd5e8 (diff) | |
download | gcc-e09ec16630ef1ec3dc7d6b512d3eb019e40d0424.zip gcc-e09ec16630ef1ec3dc7d6b512d3eb019e40d0424.tar.gz gcc-e09ec16630ef1ec3dc7d6b512d3eb019e40d0424.tar.bz2 |
tm.texi (TARGET_VALID_POINTER_MODE): Document.
2004-12-06 Eric Christopher <echristo@redhat.com>
* doc/tm.texi (TARGET_VALID_POINTER_MODE): Document.
From-SVN: r91801
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 8 | ||||
-rw-r--r-- | gcc/doc/tm.texi | 6 |
2 files changed, 12 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6f8f83d..2562640 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-12-06 Eric Christopher <echristo@redhat.com> + + * doc/tm.texi (TARGET_VALID_POINTER_MODE): Document. + 2004-12-06 Aldy Hernandez <aldyh@redhat.com> * config/rs6000/sysv4.h: Define RELOCATABLE_NEEDS_FIXUP to 1. @@ -39,9 +43,9 @@ (combine_btr_defs): Don't bother with other_def->other_btr_uses_after_use if it pertains to a different register. - (move_btr_def): Set def->other_btr_uses_before_def after + (move_btr_def): Set def->other_btr_uses_before_def after calling combine_btr_defs." - + * bt-load.c (augment_live_range): New argument full_range. Changed all callers. diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index 97b4a0f..23d386e 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -3937,6 +3937,12 @@ arguments to @code{va_arg}; the latter two are as in @code{gimplify.c:gimplify_expr}. @end deftypefn +@deftypefn {Target Hook} bool TARGET_VALID_POINTER_MODE (enum machine_mode @var{mode}) +Define this to return nonzero if the port can handle pointers +with machine mode @var{mode}. The default version of this +hook returns true for both @code{ptr_mode} and @code{Pmode}. +@end deftypefn + @deftypefn {Target Hook} bool TARGET_SCALAR_MODE_SUPPORTED_P (enum machine_mode @var{mode}) Define this to return nonzero if the port is prepared to handle insns involving scalar mode @var{mode}. For a scalar mode to be |