diff options
author | Martin Jambor <mjambor@suse.cz> | 2010-07-22 11:45:29 +0200 |
---|---|---|
committer | Martin Jambor <jamborm@gcc.gnu.org> | 2010-07-22 11:45:29 +0200 |
commit | 93c594a39d1a9751308eedc20e5023d0cf6246aa (patch) | |
tree | 0ae355ae4b4b6915af789a3bed76132965de9f85 | |
parent | 02ec698819babb12a43f548bb09d93fa3aea12ea (diff) | |
download | gcc-93c594a39d1a9751308eedc20e5023d0cf6246aa.zip gcc-93c594a39d1a9751308eedc20e5023d0cf6246aa.tar.gz gcc-93c594a39d1a9751308eedc20e5023d0cf6246aa.tar.bz2 |
ipa-prop.h (struct ipa_node_params): Updated comment.
2010-07-22 Martin Jambor <mjambor@suse.cz>
* ipa-prop.h (struct ipa_node_params): Updated comment.
(struct ipa_edge_args): Likewise.
* Makefile.in (ipa-prop.o): Remove bogus $(GIMPLE_FOLD_H) dependency.
From-SVN: r162407
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 | ||||
-rw-r--r-- | gcc/ipa-prop.h | 10 |
3 files changed, 11 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 80744a1..c1b0f37 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,11 @@ 2010-07-22 Martin Jambor <mjambor@suse.cz> + * ipa-prop.h (struct ipa_node_params): Updated comment. + (struct ipa_edge_args): Likewise. + * Makefile.in (ipa-prop.o): Remove bogus $(GIMPLE_FOLD_H) dependency. + +2010-07-22 Martin Jambor <mjambor@suse.cz> + * cgraphunit.c (verify_edge_count_and_frequency): New function. (verify_cgraph_node): Verify frequencies of indirect edges. * tree-inline.c (tree_function_versioning): Update frequencies of diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 55f3cdf..e900c73 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3003,7 +3003,7 @@ ipa.o : ipa.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(CGRAPH_H) \ ipa-prop.o : ipa-prop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ langhooks.h $(GGC_H) $(TARGET_H) $(CGRAPH_H) $(IPA_PROP_H) $(DIAGNOSTIC_H) \ $(TREE_FLOW_H) $(TM_H) $(TREE_PASS_H) $(FLAGS_H) $(TREE_H) \ - $(TREE_INLINE_H) $(GIMPLE_H) $(GIMPLE_FOLD_H) $(TIMEVAR_H) \ + $(TREE_INLINE_H) $(GIMPLE_H) $(TIMEVAR_H) \ tree-pretty-print.h gimple-pretty-print.h $(LTO_STREAMER_H) ipa-ref.o : ipa-ref.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ langhooks.h $(GGC_H) $(TARGET_H) $(CGRAPH_H) $(TREE_H) $(TARGET_H) \ diff --git a/gcc/ipa-prop.h b/gcc/ipa-prop.h index c73367a..2a28aa3 100644 --- a/gcc/ipa-prop.h +++ b/gcc/ipa-prop.h @@ -170,9 +170,8 @@ struct ipa_param_descriptor parameters (such as ipa-cp). */ struct ipa_node_params { - /* Number of formal parameters of this function. When set to 0, - this function's parameters would not be analyzed by the different - stages of IPA CP. */ + /* Number of formal parameters of this function. When set to 0, this + function's parameters would not be analyzed by IPA CP. */ int param_count; /* Whether this function is called with variable number of actual arguments. */ @@ -251,9 +250,8 @@ ipa_is_called_with_var_arguments (struct ipa_node_params *info) -/* ipa_edge_args stores information related to a callsite and particularly - its arguments. It is pointed to by a field in the - callsite's corresponding cgraph_edge. */ +/* ipa_edge_args stores information related to a callsite and particularly its + arguments. It can be accessed by the IPA_EDGE_REF macro. */ typedef struct GTY(()) ipa_edge_args { /* Number of actual arguments in this callsite. When set to 0, |