diff options
Diffstat (limited to 'gcc/tree-flow-inline.h')
-rw-r--r-- | gcc/tree-flow-inline.h | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/gcc/tree-flow-inline.h b/gcc/tree-flow-inline.h index bb9cc7d5b84..2430f0355f7 100644 --- a/gcc/tree-flow-inline.h +++ b/gcc/tree-flow-inline.h @@ -1,6 +1,6 @@ /* Inline functions for tree-flow.h - Copyright (C) 2001, 2003, 2005, 2006, 2007, 2008 Free Software - Foundation, Inc. + Copyright (C) 2001, 2003, 2005, 2006, 2007, 2008, 2010 + Free Software Foundation, Inc. Contributed by Diego Novillo <dnovillo@redhat.com> This file is part of GCC. @@ -633,15 +633,6 @@ is_call_clobbered (const_tree var) && pt_solution_includes (&cfun->gimple_df->escaped, var))); } -/* Return true if VAR is used by function calls. */ -static inline bool -is_call_used (const_tree var) -{ - return (is_call_clobbered (var) - || (may_be_aliased (var) - && pt_solution_includes (&cfun->gimple_df->callused, var))); -} - /* ----------------------------------------------------------------------- */ /* The following set of routines are used to iterator over various type of |