diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2000-11-11 04:50:51 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2000-11-11 04:50:51 +0000 |
| commit | e4475bb03f53438df599f6dbfb70f8ec8a3896ee (patch) | |
| tree | 15c5f4d1f5c0bf128dcead4ed09c23253e93e459 | |
| parent | c162a66b48d690c5ee4205b350855a7f90e71bf6 (diff) | |
Notes
| -rw-r--r-- | contrib/gcc/config/i386/freebsd.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/contrib/gcc/config/i386/freebsd.h b/contrib/gcc/config/i386/freebsd.h index d4a03586532f..a20d4f9172db 100644 --- a/contrib/gcc/config/i386/freebsd.h +++ b/contrib/gcc/config/i386/freebsd.h @@ -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 |
