diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-10-26 11:59:07 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-10-26 11:59:07 +0000 |
commit | 7e4ec8d5786942901de7b4dae84d944bece3cf45 (patch) | |
tree | f64e7603046af71851ce2144770e9a9c3cbf55df /gcc/tm.texi | |
parent | 9605810d9b47c2429c0596c727369544092f79be (diff) | |
download | gcc-7e4ec8d5786942901de7b4dae84d944bece3cf45.tar.gz |
* tm.texi (ASM_OUTPUT_MAX_SKIP_ALIGN): Document.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@23352 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tm.texi')
-rw-r--r-- | gcc/tm.texi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/tm.texi b/gcc/tm.texi index b8e49693926..ab35f1f7598 100644 --- a/gcc/tm.texi +++ b/gcc/tm.texi @@ -6375,6 +6375,14 @@ section. A C statement to output to the stdio stream @var{stream} an assembler command to advance the location counter to a multiple of 2 to the @var{power} bytes. @var{power} will be a C expression of type @code{int}. + +@findex ASM_OUTPUT_MAX_SKIP_ALIGN +@item ASM_OUTPUT_MAX_SKIP_ALIGN (@var{stream}, @var{power}, @var{max_skip}) +A C statement to output to the stdio stream @var{stream} an assembler +command to advance the location counter to a multiple of 2 to the +@var{power} bytes, but only if @var{max_skip} or fewer bytes are needed to +satisfy the alignment request. @var{power} and @var{max_skip} will be +a C expression of type @code{int}. @end table @need 3000 |