diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-27 03:08:38 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-27 03:08:38 +0000 |
commit | 5ffa81d96ae779c9d0371db78aec8c899c664fec (patch) | |
tree | 5b410740259c1bcccd678c630e6933000e8538f0 /gcc/dbxout.c | |
parent | ebee689c43b4f0acf2160c1ce630cee00ed69cca (diff) | |
download | gcc-5ffa81d96ae779c9d0371db78aec8c899c664fec.tar.gz |
2002-09-26 David Edelsohn <edelsohn@gnu.org>
* dbxout.c (FORCE_TEXT): Switch to current_function_decl, not
text_section.
* xcoffout.h (DBX_STATIC_BLOCK_START): Remove explicit change to
text section.
* config/rs6000/rs6000.c (rs6000_override_options): Allow
function-sections and data-sections functionality on AIX.
2002-09-26 David Edelsohn <edelsohn@gnu.org>
Dale Johannesen <dalej@apple.com>
* config/rs6000/rs6000.c (rs6000_emit_move): Insert zero-extend
in RTL for sub-word loads from memory.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@57572 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r-- | gcc/dbxout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 18d61eb19a5..9d27fa7c72a 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -155,7 +155,7 @@ static int source_label_number = 1; #endif #ifdef DEBUG_SYMS_TEXT -#define FORCE_TEXT text_section (); +#define FORCE_TEXT function_section (current_function_decl); #else #define FORCE_TEXT #endif |