diff options
author | Lars Brinkhoff <lars@nocrew.org> | 2001-01-25 22:18:16 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@gcc.gnu.org> | 2001-01-25 22:18:16 +0000 |
commit | a8d1550a43a5d5ad6fbc6a07b36c654001b0ad84 (patch) | |
tree | ef7e4238f62fa1a15cc9c61b9039fcfceae4879b | |
parent | 78e0ba39dcad4d5deb84479ccd108a89f53ea853 (diff) | |
download | gcc-a8d1550a43a5d5ad6fbc6a07b36c654001b0ad84.zip gcc-a8d1550a43a5d5ad6fbc6a07b36c654001b0ad84.tar.gz gcc-a8d1550a43a5d5ad6fbc6a07b36c654001b0ad84.tar.bz2 |
tm.texi (DATA_ALIGNMENT, [...]): fix typos.
* tm.texi (DATA_ALIGNMENT, LOCAL_ALIGNMENT, ASM_OPEN_PAREN,
ASM_CLOSE_PAREN): fix typos.
From-SVN: r39273
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tm.texi | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4a7417f..fd8bfbf 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-01-25 lars brinkhoff <lars@nocrew.org> + + * tm.texi (DATA_ALIGNMENT, LOCAL_ALIGNMENT, ASM_OPEN_PAREN, + ASM_CLOSE_PAREN): fix typos. + 2001-01-25 Mark Mitchell <mark@codesourcery.com> * acconfig.h: Define `const' to the empty string if neither diff --git a/gcc/tm.texi b/gcc/tm.texi index 16afc46..7b2a57d 100644 --- a/gcc/tm.texi +++ b/gcc/tm.texi @@ -981,7 +981,7 @@ the default value is @code{BIGGEST_ALIGNMENT}. @findex DATA_ALIGNMENT @item DATA_ALIGNMENT (@var{type}, @var{basic-align}) -If defined, a C expression to compute the alignment for a variables in +If defined, a C expression to compute the alignment for a variable in the static store. @var{type} is the data type, and @var{basic-align} is the alignment that the object would ordinarily have. The value of this macro is used instead of that alignment to align the object. @@ -1010,7 +1010,7 @@ constants can be done inline. @findex LOCAL_ALIGNMENT @item LOCAL_ALIGNMENT (@var{type}, @var{basic-align}) -If defined, a C expression to compute the alignment for a variables in +If defined, a C expression to compute the alignment for a variable in the local store. @var{type} is the data type, and @var{basic-align} is the alignment that the object would ordinarily have. The value of this macro is used instead of that alignment to align the object. @@ -5729,7 +5729,7 @@ the character @samp{;} is treated as a logical line separator. @findex ASM_CLOSE_PAREN @item ASM_OPEN_PAREN @itemx ASM_CLOSE_PAREN -These macros are defined as C string constant, describing the syntax +These macros are defined as C string constants, describing the syntax in the assembler for grouping arithmetic expressions. The following definitions are correct for most assemblers: |