aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-ssa.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/tree-ssa.h')
-rw-r--r--gcc/tree-ssa.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/tree-ssa.h b/gcc/tree-ssa.h
index 2153cef..fa8c808 100644
--- a/gcc/tree-ssa.h
+++ b/gcc/tree-ssa.h
@@ -63,7 +63,7 @@ extern void mark_ssa_maybe_undefs (void);
/* Return TRUE iff VAR is marked as maybe-undefined. See
mark_ssa_maybe_undefs. */
-static inline bool
+inline bool
ssa_name_maybe_undef_p (tree var)
{
gcc_checking_assert (TREE_CODE (var) == SSA_NAME);
@@ -72,7 +72,7 @@ ssa_name_maybe_undef_p (tree var)
/* Set (or clear, depending on VALUE) VAR's maybe-undefined mark. */
-static inline void
+inline void
ssa_name_set_maybe_undef (tree var, bool value = true)
{
gcc_checking_assert (TREE_CODE (var) == SSA_NAME);
@@ -84,7 +84,7 @@ extern void execute_update_addresses_taken (void);
/* Given an edge_var_map V, return the PHI arg definition. */
-static inline tree
+inline tree
redirect_edge_var_map_def (edge_var_map *v)
{
return v->def;
@@ -92,7 +92,7 @@ redirect_edge_var_map_def (edge_var_map *v)
/* Given an edge_var_map V, return the PHI result. */
-static inline tree
+inline tree
redirect_edge_var_map_result (edge_var_map *v)
{
return v->result;
@@ -100,7 +100,7 @@ redirect_edge_var_map_result (edge_var_map *v)
/* Given an edge_var_map V, return the PHI arg location. */
-static inline location_t
+inline location_t
redirect_edge_var_map_location (edge_var_map *v)
{
return v->locus;
@@ -108,7 +108,7 @@ redirect_edge_var_map_location (edge_var_map *v)
/* Verify SSA invariants, if internal consistency checks are enabled. */
-static inline void
+inline void
checking_verify_ssa (bool check_modified_stmt, bool check_ssa_operands)
{
if (flag_checking)