diff options
author | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-26 17:26:33 +0000 |
---|---|---|
committer | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-26 17:26:33 +0000 |
commit | cd6dccd365b9354fc13cdb1604ff2a71e610072b (patch) | |
tree | 01482693087a7300ccd5d02237745f640bf1246e /gcc/function.h | |
parent | 7e6d57367fa14312ce44831e4e24d7b9a3d712f3 (diff) | |
download | gcc-cd6dccd365b9354fc13cdb1604ff2a71e610072b.tar.gz |
PR middle-end/16585
* cfgbuild.c (make_edges): Do not clear or set
current_function_has_computed_jump.
* function.h (struct function): Remove the has_computed_jump field.
(current_function_has_computed_jump): Do not define.
* sched-rgn.c (is_cfg_nonregular): Return true if a basic block ends
in a computed jump. Ignore current_function_has_computed_jump.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@94269 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/function.h b/gcc/function.h index 1c32c9fbc5b..1284becb47a 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -375,9 +375,6 @@ struct function GTY(()) /* Nonzero if function being compiled contains nested functions. */ unsigned int contains_functions : 1; - /* Nonzero if the function being compiled issues a computed jump. */ - unsigned int has_computed_jump : 1; - /* Nonzero if the current function is a thunk, i.e., a lightweight function implemented by the output_mi_thunk hook) that just adjusts one of its arguments and forwards to another @@ -447,7 +444,6 @@ extern int trampolines_created; #define current_function_calls_setjmp (cfun->calls_setjmp) #define current_function_calls_alloca (cfun->calls_alloca) #define current_function_calls_eh_return (cfun->calls_eh_return) -#define current_function_has_computed_jump (cfun->has_computed_jump) #define current_function_contains_functions (cfun->contains_functions) #define current_function_is_thunk (cfun->is_thunk) #define current_function_args_info (cfun->args_info) |