diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2007-08-10 17:29:23 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2007-08-10 17:29:23 +0000 |
commit | df54b9ab94b46279d2af4977d8bdd4187151a5a7 (patch) | |
tree | c8746174b941f7ffdf61f96fa691892cadcf37f9 /gcc/tree-flow-inline.h | |
parent | acbe5496b3160137b72217c7afb80f245dc70699 (diff) | |
download | gcc-df54b9ab94b46279d2af4977d8bdd4187151a5a7.zip gcc-df54b9ab94b46279d2af4977d8bdd4187151a5a7.tar.gz gcc-df54b9ab94b46279d2af4977d8bdd4187151a5a7.tar.bz2 |
tree-flow-inline.h (is_exec_stmt): Remove.
* tree-flow-inline.h (is_exec_stmt): Remove.
(is_label_stmt): Remove.
* tree-flow.h: Remove prototypes for is_exec_stmt, get_filename, and
is_label_stmt.
From-SVN: r127343
Diffstat (limited to 'gcc/tree-flow-inline.h')
-rw-r--r-- | gcc/tree-flow-inline.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/gcc/tree-flow-inline.h b/gcc/tree-flow-inline.h index ae55c3f..1e52d1f 100644 --- a/gcc/tree-flow-inline.h +++ b/gcc/tree-flow-inline.h @@ -681,31 +681,6 @@ set_is_used (tree var) ann->used = 1; } -/* Return true if T is an executable statement. */ -static inline bool -is_exec_stmt (const_tree t) -{ - return (t && !IS_EMPTY_STMT (t) && t != error_mark_node); -} - - -/* Return true if this stmt can be the target of a control transfer stmt such - as a goto. */ -static inline bool -is_label_stmt (const_tree t) -{ - if (t) - switch (TREE_CODE (t)) - { - case LABEL_DECL: - case LABEL_EXPR: - case CASE_LABEL_EXPR: - return true; - default: - return false; - } - return false; -} /* Return true if T (assumed to be a DECL) is a global variable. */ |