diff options
author | ctice <ctice@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-12 20:39:09 +0000 |
---|---|---|
committer | ctice <ctice@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-12 20:39:09 +0000 |
commit | e6bdfb7433723ffcd81b83ded00ee81a3ac34d2a (patch) | |
tree | 2a43fb81a341285d6b565e80e3d30dcf600bd613 /gcc/dbxout.c | |
parent | 2fc56f5394a1a30adddfddc13285d8a8d8b722cc (diff) | |
download | gcc-e6bdfb7433723ffcd81b83ded00ee81a3ac34d2a.tar.gz |
Revert patch from April 9.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98039 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r-- | gcc/dbxout.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 33bbd716b17..c645edbeec2 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -938,14 +938,11 @@ dbxout_function_end (tree decl) #else if (flag_reorder_blocks_and_partition) { - struct function *cfun = DECL_STRUCT_FUNCTION (decl); - dbxout_begin_empty_stabs (N_FUN); - dbxout_stab_value_label_diff (cfun->hot_section_end_label, - cfun->hot_section_label); + dbxout_stab_value_label_diff (hot_section_end_label, hot_section_label); dbxout_begin_empty_stabs (N_FUN); - dbxout_stab_value_label_diff (cfun->cold_section_end_label, - cfun->cold_section_label); + dbxout_stab_value_label_diff (cold_section_end_label, + unlikely_section_label); } else { |