From c409ea0d30ef28e68ff6b4fcb699ba013ee947f1 Mon Sep 17 00:00:00 2001 From: DJ Delorie Date: Thu, 17 Apr 2003 19:18:58 -0400 Subject: toplev.c (target_options): Add value field. * toplev.c (target_options): Add value field. (set_target_switch): Handle target options with values. * doc/tm.texi: Document how fixed vs variable target options work. * config/alpha/alpha.h, config/arc/arc.h, config/avr/avr.h, config/c4x/c4x.h, config/cris/aout.h, config/cris/cris.h, config/d30v/d30v.h, config/dsp16xx/dsp16xx.h, config/frv/frv.h, config/i386/i386.h, config/ia64/ia64.h, config/m32r/m32r.h, config/m68hc11/m68hc11.h, config/m68k/m68k.h, config/m88k/m88k.h, config/mcore/mcore.h, config/mips/mips.h, config/mmix/mmix.h, config/pa/pa.h, config/rs6000/rs6000.h, config/rs6000/sysv4.h, config/s390/s390.h, config/sparc/sparc.h, config/v850/v850.h: Add value initializer to target options. From-SVN: r65756 --- gcc/config/dsp16xx/dsp16xx.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gcc/config/dsp16xx') diff --git a/gcc/config/dsp16xx/dsp16xx.h b/gcc/config/dsp16xx/dsp16xx.h index 3a60aea..9e22afb 100644 --- a/gcc/config/dsp16xx/dsp16xx.h +++ b/gcc/config/dsp16xx/dsp16xx.h @@ -269,15 +269,15 @@ extern int target_flags; #define TARGET_OPTIONS \ { \ { "text=", &text_seg_name, \ - N_("Specify alternate name for text section") }, \ + N_("Specify alternate name for text section"), 0}, \ { "data=", &data_seg_name, \ - N_("Specify alternate name for data section") }, \ + N_("Specify alternate name for data section"), 0}, \ { "bss=", &bss_seg_name, \ - N_("Specify alternate name for bss section") }, \ + N_("Specify alternate name for bss section"), 0}, \ { "const=", &const_seg_name, \ - N_("Specify alternate name for constant section") }, \ + N_("Specify alternate name for constant section"), 0}, \ { "chip=", &chip_name, \ - N_("Specify alternate name for dsp16xx chip") }, \ + N_("Specify alternate name for dsp16xx chip"), 0}, \ } /* Sometimes certain combinations of command options do not make sense -- cgit v1.1