diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-04-10 17:26:03 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-04-10 17:26:03 +0000 |
commit | c5d34bb2d63bc7c3525843da011e01da3d86562b (patch) | |
tree | 2eb31c4c84c0a0f87317dafd8ac25d7235ccb5db /gcc | |
parent | 51c3f0f6d7ef61a98ca319ec24d04ffb7b5bca43 (diff) | |
download | gcc-c5d34bb2d63bc7c3525843da011e01da3d86562b.zip gcc-c5d34bb2d63bc7c3525843da011e01da3d86562b.tar.gz gcc-c5d34bb2d63bc7c3525843da011e01da3d86562b.tar.bz2 |
arm.c: Fix a comment typo.
* config/arm/arm.c: Fix a comment typo.
* doc/tree-ssa.texi: Fix a typo.
From-SVN: r97949
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/arm/arm.c | 2 | ||||
-rw-r--r-- | gcc/doc/tree-ssa.texi | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d6ae852..8824718 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-04-10 Kazu Hirata <kazu@cs.umass.edu> + + * config/arm/arm.c: Fix a comment typo. + * doc/tree-ssa.texi: Fix a typo. + 2005-04-10 Steven Bosscher <stevenb@suse.de> * cselib.c (clear_table): Rename to cselib_clear_table. diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c index 669ec64..5091f8e 100644 --- a/gcc/config/arm/arm.c +++ b/gcc/config/arm/arm.c @@ -455,7 +455,7 @@ int arm_arch_xscale = 0; int arm_tune_xscale = 0; /* Nonzero if we want to tune for stores that access the write-buffer. - This typicallly means an ARM6 or ARM7 with MMU or MPU. */ + This typically means an ARM6 or ARM7 with MMU or MPU. */ int arm_tune_wbuf = 0; /* Nonzero if generating Thumb instructions. */ diff --git a/gcc/doc/tree-ssa.texi b/gcc/doc/tree-ssa.texi index c449a8f..d1c3c1f 100644 --- a/gcc/doc/tree-ssa.texi +++ b/gcc/doc/tree-ssa.texi @@ -1090,7 +1090,7 @@ It is also still possible to utilize lazy updating of stmts, but this should be optimizations currently do this. When lazy updating is being used, the immediate use information is out of date -and cannot be used reliably. Lazy updating is acheived by simply marking stmts +and cannot be used reliably. Lazy updating is achieved by simply marking stmts modified via calls to @code{mark_stmt_modified} instead of @code{update_stmt}. When lazy updating is no longer required, all the modified stmts must have @code{update_stmt} called in order to bring them up to date. This must be done before the optimization is finished, or @code{verify_ssa} will trigger an abort. |