diff options
author | Jason Merrill <jason@gcc.gnu.org> | 2012-01-06 16:39:07 -0500 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2012-01-06 16:39:07 -0500 |
commit | 458961279a87b43f2bd98ec22cabd518a9580041 (patch) | |
tree | 272b0c624ed1b486d789c7f185f25da7021a4580 | |
parent | 7483eef82aecf04dc30cd9d835d1691f6073ebd6 (diff) | |
download | gcc-458961279a87b43f2bd98ec22cabd518a9580041.zip gcc-458961279a87b43f2bd98ec22cabd518a9580041.tar.gz gcc-458961279a87b43f2bd98ec22cabd518a9580041.tar.bz2 |
correct comment
From-SVN: r182965
-rw-r--r-- | gcc/cgraph.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index 0efce34..78ab3e1 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -735,7 +735,7 @@ cgraph_first_defined_function (void) return NULL; } -/* Return next reachable static variable with initializer after NODE. */ +/* Return next function with body defined after NODE. */ static inline struct cgraph_node * cgraph_next_defined_function (struct cgraph_node *node) { |