diff options
author | Kazu Hirata <kazu@hxi.com> | 2001-07-11 01:04:26 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2001-07-11 01:04:26 +0000 |
commit | 0407c02b4ec356223be693ef19cb9307afce5e45 (patch) | |
tree | 8076df6fdf0c8103c40ce627bf07e25c9e1d5c8b /gcc | |
parent | a1b2ebc0b23cce4a16a643b50266b09747c4f985 (diff) | |
download | gcc-0407c02b4ec356223be693ef19cb9307afce5e45.zip gcc-0407c02b4ec356223be693ef19cb9307afce5e45.tar.gz gcc-0407c02b4ec356223be693ef19cb9307afce5e45.tar.bz2 |
calls.c (emit_library_call_value_1): Fix a comment typo.
2001-07-10 Kazu Hirata <kazu@hxi.com>
* calls.c (emit_library_call_value_1): Fix a comment typo.
* dwarf2out.c (mem_loc_descriptor): Likewise.
* config/i386/i386.c (ix86_expand_aligntest): Likewise.
From-SVN: r43917
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/calls.c | 2 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 2 | ||||
-rw-r--r-- | gcc/dwarf2out.c | 2 |
4 files changed, 9 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 221b50a..c3f626e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2001-07-10 Kazu Hirata <kazu@hxi.com> + + * calls.c (emit_library_call_value_1): Fix a comment typo. + * dwarf2out.c (mem_loc_descriptor): Likewise. + * config/i386/i386.c (ix86_expand_aligntest): Likewise. + 2001-07-11 David Billinghurst <David.Billinghurst@riotinto.com> * simplify-rtx.c: (simplify_subreg) Fix typo in comment diff --git a/gcc/calls.c b/gcc/calls.c index c5a5cb6..36aa4b57 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -3462,7 +3462,7 @@ expand_call (exp, target, ignore) /* Output a library call to function FUN (a SYMBOL_REF rtx). The RETVAL parameter specifies whether return value needs to be saved, other - parameters are documented in the emit_library_call function bellow. */ + parameters are documented in the emit_library_call function below. */ static rtx emit_library_call_value_1 (retval, orgfun, value, fn_type, outmode, nargs, p) int retval; diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 9b32180..585238f 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -7405,7 +7405,7 @@ ix86_split_lshrdi (operands, scratch) } } -/* Helper function for the string operations bellow. Dest VARIABLE whether +/* Helper function for the string operations below. Dest VARIABLE whether it is aligned to VALUE bytes. If true, jump to the label. */ static rtx ix86_expand_aligntest (variable, value) diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index cbae8a9..f397fef 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -7455,7 +7455,7 @@ mem_loc_descriptor (rtl, mode) case PRE_MODIFY: /* Extract the PLUS expression nested inside and fall into - PLUS code bellow. */ + PLUS code below. */ rtl = XEXP (rtl, 1); goto plus; |