diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-23 14:22:33 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-23 14:22:33 +0000 |
commit | b974179016bff8e2c129e3a6c9d76fde3a9dd450 (patch) | |
tree | 78398253571cfefc8a97cf9f4ac9805be0f8814c | |
parent | 3ef9356052b3b96df69f5286cb3da1e1e4fd569d (diff) | |
download | gcc-b974179016bff8e2c129e3a6c9d76fde3a9dd450.tar.gz |
* builtins.c: Fix a comment typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87947 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/builtins.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7b098133081..aa7bb17cea7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-09-23 Kazu Hirata <kazu@cs.umass.edu> + + * builtins.c: Fix a comment typo. + 2004-09-23 Jan Hubicka <jh@suse.cz> * profile.c (branch_prob): Do not verify flow info in the middle of the diff --git a/gcc/builtins.c b/gcc/builtins.c index 89549c6b5a9..f3ee9e9b348 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -8667,7 +8667,7 @@ fold_builtin_strstr (tree arglist) } } -/* Simplify a call to the strstr builtin. +/* Simplify a call to the strchr builtin. Return 0 if no simplification was possible, otherwise return the simplified form of the call as a tree. |