diff options
author | Geoffrey Keating <geoffk@apple.com> | 2006-12-12 23:53:37 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2006-12-12 23:53:37 +0000 |
commit | 606e938d0fe11a96d8683840ffce4210b439ebe6 (patch) | |
tree | a09db465057bbc49a8a53a08be165878eacf1a77 | |
parent | 3d9cd79a7c9c7d21e974ee10bf05fb356bafea32 (diff) | |
download | gcc-606e938d0fe11a96d8683840ffce4210b439ebe6.zip gcc-606e938d0fe11a96d8683840ffce4210b439ebe6.tar.gz gcc-606e938d0fe11a96d8683840ffce4210b439ebe6.tar.bz2 |
tm.texi (Alignment Output): Document that ASM_OUTPUT_SKIP actually takes an unsigned HOST_WIDE_INT for its...
* doc/tm.texi (Alignment Output): Document that ASM_OUTPUT_SKIP
actually takes an unsigned HOST_WIDE_INT for its second parameter.
From-SVN: r119806
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/tm.texi | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 86530bc..cb8b282 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2006-12-12 Geoffrey Keating <geoffk@apple.com> + + * doc/tm.texi (Alignment Output): Document that ASM_OUTPUT_SKIP + actually takes an unsigned HOST_WIDE_INT for its second parameter. + 2006-12-13 Ulrich Weigand <uweigand@de.ibm.com> * config/spu/spu.c (TARGET_ENCODE_SECTION_INFO): Define. diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index 5230547..f209593 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -8195,7 +8195,7 @@ This works only if @code{ASM_OUTPUT_MAX_SKIP_ALIGN} is defined. A C statement to output to the stdio stream @var{stream} an assembler instruction to advance the location counter by @var{nbytes} bytes. Those bytes should be zero when loaded. @var{nbytes} will be a C -expression of type @code{int}. +expression of type @code{unsigned HOST_WIDE_INT}. @end defmac @defmac ASM_NO_SKIP_IN_TEXT |