diff options
author | Kazu Hirata <kazu@hxi.com> | 2001-07-12 01:36:16 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2001-07-12 01:36:16 +0000 |
commit | 4d893612441a8018649a638403b21f48d1c8843d (patch) | |
tree | 12a9de3b039c5c732769cbe3fcc6c7c67764591e /gcc | |
parent | 89cd2243635c023c56704c124e2eb0502c9d3333 (diff) | |
download | gcc-4d893612441a8018649a638403b21f48d1c8843d.zip gcc-4d893612441a8018649a638403b21f48d1c8843d.tar.gz gcc-4d893612441a8018649a638403b21f48d1c8843d.tar.bz2 |
recog.c (validate_change): Fix a comment typo.
2001-07-11 Kazu Hirata <kazu@hxi.com>
* recog.c (validate_change): Fix a comment typo.
From-SVN: r43956
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/recog.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 52d9a33..f3eed75 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-07-11 Kazu Hirata <kazu@hxi.com> + + * recog.c (validate_change): Fix a comment typo. + 2001-07-11 Neil Booth <neil@daikokuya.demon.co.uk> * Makefile.in (c-lex.o): Wrap long lines. Depend on debug.h. diff --git a/gcc/recog.c b/gcc/recog.c index 26ff030..ef30528 100644 --- a/gcc/recog.c +++ b/gcc/recog.c @@ -182,7 +182,7 @@ static int changes_allocated; static int num_changes = 0; -/* Validate a proposed change to OBJECT. LOC is the location in the rtl for +/* Validate a proposed change to OBJECT. LOC is the location in the rtl at which NEW will be placed. If OBJECT is zero, no validation is done, the change is simply made. |