diff options
author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-20 17:03:04 +0000 |
---|---|---|
committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-20 17:03:04 +0000 |
commit | a0fee14aa7831636bf6b6fc6d5fb852979c80ab4 (patch) | |
tree | db58f3f22a75c656aac8cc7600fc97e0aca34138 /gcc/builtins.c | |
parent | a9fb8e3e8ada0d6d5e764b6cd6fbccaff0e64a59 (diff) | |
download | gcc-a0fee14aa7831636bf6b6fc6d5fb852979c80ab4.tar.gz |
2004-06-20 Andrew Pinski <pinskia@physics.uc.edu>
PR middle-end/16089
* builtins.c (entry_of_function): Move to ...
* cfgrtl.c (entry_of_function): Here and make non-static.
* integrate.c (emit_initial_value_sets): Use entry_of_function.
* rtl.h (entry_of_function): Prototype.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83415 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/builtins.c')
-rw-r--r-- | gcc/builtins.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gcc/builtins.c b/gcc/builtins.c index 0959b1f32c8..92a4dc3b2f7 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -1206,13 +1206,6 @@ expand_builtin_apply_args_1 (void) return copy_addr_to_reg (XEXP (registers, 0)); } -/* Return RTX to emit after when we want to emit code on the entry of function. */ -static rtx -entry_of_function (void) -{ - return (n_basic_blocks ? BB_HEAD (ENTRY_BLOCK_PTR->next_bb) : get_insns ()); -} - /* __builtin_apply_args returns block of memory allocated on the stack into which is stored the arg pointer, structure value address, static chain, and all the registers that might |