summaryrefslogtreecommitdiff
path: root/gcc/ipa-prop.h
diff options
context:
space:
mode:
authorbstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4>2010-03-10 06:54:57 +0000
committerbstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4>2010-03-10 06:54:57 +0000
commit665f077854edd80761db383329ea2616b88de6cc (patch)
tree9de6211963abb225b488ec198281e1e56a794dfc /gcc/ipa-prop.h
parent8dd7ecfa41929b8641f1b1bb2170fa0e4b1c6386 (diff)
downloadgcc-665f077854edd80761db383329ea2616b88de6cc.tar.gz
2010-03-10 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk rev 157331 git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@157332 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ipa-prop.h')
-rw-r--r--gcc/ipa-prop.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc/ipa-prop.h b/gcc/ipa-prop.h
index 90055e124bc..aca4342aa93 100644
--- a/gcc/ipa-prop.h
+++ b/gcc/ipa-prop.h
@@ -169,8 +169,6 @@ struct ipa_param_descriptor
tree decl;
/* Whether the value parameter has been modified within the function. */
unsigned modified : 1;
- /* Whether the parameter has been used as a call destination. */
- unsigned called : 1;
};
/* ipa_node_params stores information related to formal parameters of functions
@@ -248,17 +246,6 @@ ipa_is_param_modified (struct ipa_node_params *info, int i)
return info->params[i].modified;
}
-/* Return the called flag corresponding to the Ith formal parameter of the
- function associated with INFO. Note that there is no setter method as the
- goal is to set all flags when building the array in
- ipa_detect_called_params. */
-
-static inline bool
-ipa_is_param_called (struct ipa_node_params *info, int i)
-{
- return info->params[i].called;
-}
-
/* Flag this node as having callers with variable number of arguments. */
static inline void