diff options
author | Pascal Stumpf <pascal@cvs.openbsd.org> | 2012-04-02 13:38:40 +0000 |
---|---|---|
committer | Pascal Stumpf <pascal@cvs.openbsd.org> | 2012-04-02 13:38:40 +0000 |
commit | 02d60c61e667d632d4ce9ace75d7d0ddc682a77e (patch) | |
tree | d5f70124cba5dd0f53aceaa46b868b92e3bc57fa /gnu/gcc | |
parent | 7662fdd0397b31c0d769f48e6c46b6631f7130ce (diff) |
In r1.2, instead of making -fno-ident the default, its semantics have been
totally fucked up, effectively leading to inverted behaviour of the -fident and
-fno-ident flags (while keeping the .ident string in by default). Revert it
back to normal and default to -fno-ident.
ok millert@
Diffstat (limited to 'gnu/gcc')
-rw-r--r-- | gnu/gcc/gcc/common.opt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/gcc/gcc/common.opt b/gnu/gcc/gcc/common.opt index d0d861169e5..8eb5883768e 100644 --- a/gnu/gcc/gcc/common.opt +++ b/gnu/gcc/gcc/common.opt @@ -494,7 +494,7 @@ Enable guessing of branch probabilities ; On SVR4 targets, it also controls whether or not to emit a ; string identifying the compiler. fident -Common Report Var(flag_no_ident,1) +Common Report Var(flag_no_ident,0) Init(1) Process #ident directives fif-conversion |