diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-12-04 14:53:13 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-12-04 14:53:13 +0000 |
commit | b732f36fe6787f9b7966ea35166fe55c72c1727a (patch) | |
tree | 34446d136b1d4deb4350bc95e019b619620c88f2 /gcc | |
parent | a6ac7f6fb4586e22446b9d4a2d5ce664ebd1ea31 (diff) | |
download | gcc-b732f36fe6787f9b7966ea35166fe55c72c1727a.zip gcc-b732f36fe6787f9b7966ea35166fe55c72c1727a.tar.gz gcc-b732f36fe6787f9b7966ea35166fe55c72c1727a.tar.bz2 |
* gcse.c (gcse_main): Add a comment.
From-SVN: r91729
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/gcse.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e6b2b70..06074e1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-12-04 Kazu Hirata <kazu@cs.umass.edu> + + * gcse.c (gcse_main): Add a comment. + 2004-12-04 Alan Modra <amodra@bigpond.net.au> * mklibgcc.in: Build shared libgcc and shared libunwind in gcc/. @@ -675,7 +675,8 @@ static bool is_too_expensive (const char *); /* Entry point for global common subexpression elimination. - F is the first instruction in the function. */ + F is the first instruction in the function. Return nonzero if a + change is mode. */ int gcse_main (rtx f, FILE *file) |