vms.h (OPTIMIZATION_OPTIONS): Remove
* config/alpha/vms.h (OPTIMIZATION_OPTIONS): Remove (OVERRIDE_OPTIONS): Incorporate removed OPTIMIZATION_OPTIONS. From-SVN: r150647
This commit is contained in:
parent
1d3499d85c
commit
fddeba6da8
2 changed files with 15 additions and 14 deletions
|
@ -1,3 +1,8 @@
|
|||
2009-08-10 Douglas B Rupp <rupp@gnat.com>
|
||||
|
||||
* config/alpha/vms.h (OPTIMIZATION_OPTIONS): Remove
|
||||
(OVERRIDE_OPTIONS): Incorporate removed OPTIMIZATION_OPTIONS.
|
||||
|
||||
2009-08-10 Olivier Hainque <hainqueu@adacore.com>
|
||||
Douglas B Rupp <rupp@gnat.com>
|
||||
|
||||
|
|
|
@ -361,22 +361,18 @@ typedef struct crtl_name_spec
|
|||
#undef ASM_FINAL_SPEC
|
||||
|
||||
/* The VMS convention is to always provide minimal debug info
|
||||
for a traceback unless specifically overridden. Defaulting this here
|
||||
is a kludge. */
|
||||
for a traceback unless specifically overridden. */
|
||||
|
||||
#define OPTIMIZATION_OPTIONS(OPTIMIZE, OPTIMIZE_SIZE) \
|
||||
{ \
|
||||
write_symbols = VMS_DEBUG; \
|
||||
debug_info_level = (enum debug_info_level) 1; \
|
||||
}
|
||||
|
||||
/* Override traceback debug info on -g0. */
|
||||
#undef OVERRIDE_OPTIONS
|
||||
#define OVERRIDE_OPTIONS \
|
||||
{ \
|
||||
if (write_symbols == NO_DEBUG) \
|
||||
debug_info_level = (enum debug_info_level) 0; \
|
||||
override_options (); \
|
||||
#define OVERRIDE_OPTIONS \
|
||||
{ \
|
||||
if (write_symbols == NO_DEBUG \
|
||||
&& debug_info_level == DINFO_LEVEL_NONE) \
|
||||
{ \
|
||||
write_symbols = VMS_DEBUG; \
|
||||
debug_info_level = DINFO_LEVEL_TERSE; \
|
||||
} \
|
||||
override_options (); \
|
||||
}
|
||||
|
||||
/* Link with vms-dwarf2.o if -g (except -g0). This causes the
|
||||
|
|
Loading…
Add table
Reference in a new issue