diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-09-02 17:30:10 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-09-02 17:30:10 +0000 |
commit | 6d8ae0120d7d843d4afc8ce0bb1a35976a1d9f9f (patch) | |
tree | e946b4e5852df30c10c4a0e0acdbe03bade68375 /gnu | |
parent | 7592107d280aebe0829159bdff0c28d07a15ad5c (diff) |
A slightly reworked version of the "default to -fno-ident" change, which
improves diffability against stock gcc sources, for us alzheimer-impaired
people. Requested by deraadt@
(no functional change)
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/egcs/gcc/toplev.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/egcs/gcc/toplev.c b/gnu/egcs/gcc/toplev.c index eb33a233902..6d50bd7b6e9 100644 --- a/gnu/egcs/gcc/toplev.c +++ b/gnu/egcs/gcc/toplev.c @@ -770,7 +770,11 @@ int flag_instrument_function_entry_exit = 0; On SVR4 targets, it also controls whether or not to emit a string identifying the compiler. */ +#ifdef OPENBSD_NATIVE int flag_no_ident = 1; +#else +int flag_no_ident = 0; +#endif #if defined(STACK_PROTECTOR) && defined(STACK_GROWS_DOWNWARD) /* Nonzero means use propolice as a stack protection method */ |