diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/final.c | 2 | ||||
-rw-r--r-- | gcc/ipa-inline.c | 2 | ||||
-rw-r--r-- | gcc/varasm.c | 2 |
4 files changed, 7 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c11ac78..0158f5b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-04-23 Kazu Hirata <kazu@cs.umass.edu> + + * final.c, ipa-inline.c, varasm.c: Fix comment typos. + 2005-04-23 Hans-Peter Nilsson <hp@axis.com> * config.gcc <cris-*>: Specify .opt files. diff --git a/gcc/final.c b/gcc/final.c index 598992c..5096284 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -3135,7 +3135,7 @@ output_operand (rtx x, int code ATTRIBUTE_UNUSED) if (x && GET_CODE (x) == SUBREG) x = alter_subreg (&x); - /* X must not be a psuedo reg. */ + /* X must not be a pseudo reg. */ gcc_assert (!x || !REG_P (x) || REGNO (x) < FIRST_PSEUDO_REGISTER); PRINT_OPERAND (asm_out_file, x, code); diff --git a/gcc/ipa-inline.c b/gcc/ipa-inline.c index ad9e998..9632ba9 100644 --- a/gcc/ipa-inline.c +++ b/gcc/ipa-inline.c @@ -30,7 +30,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA cgraph_mark_inline implementation - This function allow to mark given call inline and performs neccesary + This function allow to mark given call inline and performs necessary modifications of cgraph (production of the clones and updating overall statistics) diff --git a/gcc/varasm.c b/gcc/varasm.c index a3aa44a..35052a5 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -2259,7 +2259,7 @@ assemble_real (REAL_VALUE_TYPE d, enum machine_mode mode, unsigned int align) /* Given an expression EXP with a constant value, reduce it to the sum of an assembler symbol and an integer. Store them both in the structure *VALUE. - EXP must be reduceable. */ + EXP must be reducible. */ struct addr_const GTY(()) { |