diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-06-06 20:39:46 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-06-06 20:39:46 +0000 |
commit | e97da9acca05b56be99bfd9abd8b83e5db5268fb (patch) | |
tree | fcab715a6c79d738a81d753254714e02889ad105 /gcc/ipa-prop.h | |
parent | 76d6e5e429f5ca1ba89341e4fd3cbd5f4a6f055f (diff) | |
download | gcc-e97da9acca05b56be99bfd9abd8b83e5db5268fb.tar.gz |
2008-06-06 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk r136492
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@136504 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ipa-prop.h')
-rw-r--r-- | gcc/ipa-prop.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ipa-prop.h b/gcc/ipa-prop.h index 3be7502ae8c..a81418d7f47 100644 --- a/gcc/ipa-prop.h +++ b/gcc/ipa-prop.h @@ -1,5 +1,5 @@ /* Interprocedural analyses. - Copyright (C) 2005, 2007 Free Software Foundation, Inc. + Copyright (C) 2005, 2007, 2008 Free Software Foundation, Inc. This file is part of GCC. @@ -115,7 +115,7 @@ struct ipa_replace_map struct ipa_node_params { /* Number of formal parameters of this function. When set to 0, - this functions's parameters would not be analyzed by the different + this function's parameters would not be analyzed by the different stages of IPA CP. */ int param_count; /* Array of lattices. */ @@ -134,7 +134,7 @@ struct ipa_node_params one. */ gcov_type count_scale; - /* Whether this fynction is called with variable number of actual + /* Whether this function is called with variable number of actual arguments. */ unsigned called_with_var_arguments : 1; }; @@ -165,7 +165,7 @@ ipa_get_ith_param (struct ipa_node_params *info, int i) return info->param_decls[i]; } -/* Returns the modification flag corresponding o the ith paramterer. Note +/* Returns the modification flag corresponding to the ith parameter. Note there is no setter method as the goal is to set all flags when building the array in ipa_detect_param_modifications. */ static inline bool |