This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Document ASM_OUTPUT_SKIP parameter types
- From: gkeating at apple dot com (Geoffrey Keating)
- To: gcc-patches at gcc dot gnu dot org
- Date: Tue, 12 Dec 2006 15:52:59 -0800 (PST)
- Subject: Document ASM_OUTPUT_SKIP parameter types
ASM_OUTPUT_SKIP takes an unsigned HOST_WIDE_INT for the nbytes
parameter in every existing use, and never an 'int'.
--
- Geoffrey Keating <geoffk@apple.com>
===File ~/patches/gcc-doc-asmoutputskiptype.patch===========
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.
Index: doc/tm.texi
===================================================================
--- doc/tm.texi (revision 119802)
+++ doc/tm.texi (working copy)
@@ -8195,7 +8195,7 @@
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
============================================================