diff options
author | Jan Hubicka <jh@suse.cz> | 2001-11-28 10:47:25 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2001-11-28 09:47:25 +0000 |
commit | db4a825457efe5f2b71281fa17f59ce2d7c65a6d (patch) | |
tree | 97187b5417e7845f32035f0c7bc2cd22abcfb809 /gcc/c-common.h | |
parent | 562d21e913afeb56dced1b60fdfe6ff09a2fbf23 (diff) | |
download | gcc-db4a825457efe5f2b71281fa17f59ce2d7c65a6d.zip gcc-db4a825457efe5f2b71281fa17f59ce2d7c65a6d.tar.gz gcc-db4a825457efe5f2b71281fa17f59ce2d7c65a6d.tar.bz2 |
cse.c (true_dependence_in_rtx): New function.
* cse.c (true_dependence_in_rtx): New function.
(invalidate): Use it.
* c-common.h (GOTO_FAKE_P): New macro.
* tree-inline.c (GOTO_FAKE_P): Set.
* c-tree.texi (GOTO_FAKE_P): Document.
* varasm.c (assemble_variable): Set reloc to 3 for error_mark
containing pointers.
(output_addressed_constants): Check for local/external relocations.
* elfos.h (SELECT_SECTION): Classify data section.
* tm.texi (SELECT_SECTION): Update documentation.
* cfganal.c (flow_dfs_compute_reverse_add_bb): set visited bit.
(flow_dfs_compute_reverse_execute): Add only unvisited blocks.
From-SVN: r47405
Diffstat (limited to 'gcc/c-common.h')
-rw-r--r-- | gcc/c-common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/c-common.h b/gcc/c-common.h index 1d87cf4..1ce21a1 100644 --- a/gcc/c-common.h +++ b/gcc/c-common.h @@ -600,6 +600,8 @@ extern tree strip_array_types PARAMS ((tree)); /* GOTO_STMT accessor. This gives access to the label associated with a goto statement. */ #define GOTO_DESTINATION(NODE) TREE_OPERAND (GOTO_STMT_CHECK (NODE), 0) +/* True for goto created artifically by the compiler. */ +#define GOTO_FAKE_P(NODE) (TREE_LANG_FLAG_0 (GOTO_STMT_CHECK (NODE))) /* COMPOUND_STMT accessor. This gives access to the TREE_LIST of statements associated with a compound statement. The result is the |