diff options
author | Jakub Jelinek <jakub@redhat.com> | 2002-04-04 23:04:09 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2002-04-04 23:04:09 +0200 |
commit | 15e0ecab0b10af8bae4495b36466775ff0aa6bdc (patch) | |
tree | 3a7257ca288c552ed6c7f8664a35ba8666452248 | |
parent | ffd386b033448135e9648b773a09680932edcec7 (diff) | |
download | gcc-15e0ecab0b10af8bae4495b36466775ff0aa6bdc.zip gcc-15e0ecab0b10af8bae4495b36466775ff0aa6bdc.tar.gz gcc-15e0ecab0b10af8bae4495b36466775ff0aa6bdc.tar.bz2 |
re PR c++/6119 (sparc-sun-solaris2.7 gcc-3.1 extra g++ testsuite failure w/-fpic|-fPIC)
PR c++/6119
* final.c (final_start_function): Don't bump profile_label_no here...
(final_end_function): ...but here.
From-SVN: r51872
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/final.c | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2566a78..766b4c7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,11 @@ 2002-04-04 Jakub Jelinek <jakub@redhat.com> + PR c++/6119 + * final.c (final_start_function): Don't bump profile_label_no here... + (final_end_function): ...but here. + +2002-04-04 Jakub Jelinek <jakub@redhat.com> + * config/sparc/sparc.md (pic): New attribute. (do_builtin_setjmp_setup): Save %fp, %i7 and %l7 for TARGET_V9 into stack slots. diff --git a/gcc/final.c b/gcc/final.c index 4992ced..7d33beb 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -1564,8 +1564,6 @@ final_start_function (first, file, optimize) if (! HAVE_prologue) #endif profile_after_prologue (file); - - profile_label_no++; } static void @@ -1677,6 +1675,8 @@ final_end_function () && dwarf2out_do_frame ()) dwarf2out_end_epilogue (); #endif + + profile_label_no++; } /* Output assembler code for some insns: all or part of a function. |