Properly format the SUBTARGET_SWITCHES so that ``gcc -v --help'' prints

them out.

PR:		19326
Submitted by:	Naohiko Tsuji <yakisoba@f2.dion.ne.jp>
This commit is contained in:
obrien 2000-11-11 04:50:51 +00:00
parent 112e7300f8
commit 19fd5b1366

View File

@ -140,12 +140,12 @@ Boston, MA 02111-1307, USA. */
#undef SUBTARGET_SWITCHES
#define SUBTARGET_SWITCHES \
{ "profiler-epilogue", MASK_PROFILER_EPILOGUE}, \
{ "no-profiler-epilogue", -MASK_PROFILER_EPILOGUE}, \
{ "aout", MASK_AOUT}, \
{ "no-aout", -MASK_AOUT}, \
{ "underscores", MASK_UNDERSCORES}, \
{ "no-underscores", -MASK_UNDERSCORES},
{ "profiler-epilogue", MASK_PROFILER_EPILOGUE, "Function profiler epilogue"}, \
{ "no-profiler-epilogue", -MASK_PROFILER_EPILOGUE, "No function profiler epilogue"}, \
{ "aout", MASK_AOUT, "Generate an a.out (vs. ELF) binary"}, \
{ "no-aout", -MASK_AOUT, "Do not generate an a.out binary"}, \
{ "underscores", MASK_UNDERSCORES, "Add leading underscores to symbols"}, \
{ "no-underscores", -MASK_UNDERSCORES, "Do not add leading underscores to symbols"},
/* This goes away when the math emulator is fixed. */
#undef TARGET_DEFAULT