diff options
author | 2003-09-02 17:30:09 +0000 | |
---|---|---|
committer | 2003-09-02 17:30:09 +0000 | |
commit | a2569ca4022d2d39af83b73f0b912e2c17101e59 (patch) | |
tree | 1416eaae09689312aaf3c595a4ae45c0a79f6f32 | |
parent | Our extent implementation relies on the fact that extents all have distinct (diff) | |
download | wireguard-openbsd-a2569ca4022d2d39af83b73f0b912e2c17101e59.tar.xz wireguard-openbsd-a2569ca4022d2d39af83b73f0b912e2c17101e59.zip |
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)
-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 */ |