diff options
author | Chandrakala Chavva <cchavva@redhat.com> | 2001-02-05 20:23:13 -0500 |
---|---|---|
committer | Chandra Chavva <cchavva@gcc.gnu.org> | 2001-02-05 20:23:13 -0500 |
commit | 411707f4e466b75ec2dac4d024195fd1999eeeec (patch) | |
tree | b7d306e1aa3339f74147d38e1d9fb9b6ebffe031 /gcc/final.c | |
parent | 8720914be356a666c811a881e02ce92c3c9e4f92 (diff) | |
download | gcc-411707f4e466b75ec2dac4d024195fd1999eeeec.zip gcc-411707f4e466b75ec2dac4d024195fd1999eeeec.tar.gz gcc-411707f4e466b75ec2dac4d024195fd1999eeeec.tar.bz2 |
final.c: Move the declaration profile_label_no to ...
* final.c: Move the declaration profile_label_no to ...
* output.h: ... here.
* function.c (expand_function_start): Call PROFILE_HOOK.
* config/rs6000/aix.h: Define PROFILE_HOOK.
* config/rs6000/rs6000-protos.h: output_profile_hook new.
* config/rs6000/rs6000.c (output_profile_hook): Define.
(output_prolog): Do nothing for ABI_AIX as it is taken care by
output_profile_hook.
tm.texi : Explain new macro PROFILE_HOOK.
From-SVN: r39473
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/final.c b/gcc/final.c index 3a2fc15..18f3e90 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -205,10 +205,6 @@ char regs_ever_live[FIRST_PSEUDO_REGISTER]; int frame_pointer_needed; -/* Assign unique numbers to labels generated for profiling. */ - -int profile_label_no; - /* Number of unmatched NOTE_INSN_BLOCK_BEG notes we have seen. */ static int block_depth; |