dwarf2out.c (text_section_used): Move declaration outside ifdef DWARF2_DEBUGGING_INFO.
* dwarf2out.c (text_section_used): Move declaration outside ifdef DWARF2_DEBUGGING_INFO. (cold_text_section_used): Same. (cold_text_section): Same. From-SVN: r127648
This commit is contained in:
parent
a489b1f0ea
commit
01a2a2f512
2 changed files with 16 additions and 8 deletions
|
@ -1,3 +1,10 @@
|
|||
2007-08-20 David Edelsohn <edelsohn@gnu.org>
|
||||
|
||||
* dwarf2out.c (text_section_used): Move declaration outside ifdef
|
||||
DWARF2_DEBUGGING_INFO.
|
||||
(cold_text_section_used): Same.
|
||||
(cold_text_section): Same.
|
||||
|
||||
2007-08-20 Richard Guenther <rguenther@suse.de>
|
||||
|
||||
* c-typeck.c (convert_for_assignment): Use the type of
|
||||
|
|
|
@ -4052,6 +4052,15 @@ static GTY(()) int label_num;
|
|||
/* Cached result of previous call to lookup_filename. */
|
||||
static GTY(()) struct dwarf_file_data * file_table_last_lookup;
|
||||
|
||||
/* Whether the default text and cold text sections have been used at
|
||||
all. */
|
||||
|
||||
static GTY(()) bool text_section_used = false;
|
||||
static GTY(()) bool cold_text_section_used = false;
|
||||
|
||||
/* The default cold text section. */
|
||||
static GTY(()) section *cold_text_section;
|
||||
|
||||
#ifdef DWARF2_DEBUGGING_INFO
|
||||
|
||||
/* Offset from the "steady-state frame pointer" to the frame base,
|
||||
|
@ -4413,14 +4422,6 @@ static char ranges_section_label[2 * MAX_ARTIFICIAL_LABEL_BYTES];
|
|||
#define SEPARATE_LINE_CODE_LABEL "LSM"
|
||||
#endif
|
||||
|
||||
/* Whether the default text and cold text sections have been used at
|
||||
all. */
|
||||
|
||||
static GTY(()) bool text_section_used = false;
|
||||
static GTY(()) bool cold_text_section_used = false;
|
||||
|
||||
/* The default cold text section. */
|
||||
static GTY(()) section *cold_text_section;
|
||||
|
||||
/* We allow a language front-end to designate a function that is to be
|
||||
called to "demangle" any name before it is put into a DIE. */
|
||||
|
|
Loading…
Add table
Reference in a new issue