diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/common.opt | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6344a53..47d4141 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2014-06-12 Jason Merrill <jason@redhat.com> + * common.opt (fabi-version): Change default to 0. + +2014-06-12 Jason Merrill <jason@redhat.com> + * toplev.c (process_options): Reject -fabi-version=1. 2014-06-12 Jeff Law <law@redhat.com> diff --git a/gcc/common.opt b/gcc/common.opt index f61fab5..7f05092 100644 --- a/gcc/common.opt +++ b/gcc/common.opt @@ -808,7 +808,8 @@ Driver Undocumented ; Additional positive integers will be assigned as new versions of ; the ABI become the default version of the ABI. fabi-version= -Common Joined RejectNegative UInteger Var(flag_abi_version) Init(2) +Common Joined RejectNegative UInteger Var(flag_abi_version) Init(0) +The version of the C++ ABI in use faggressive-loop-optimizations Common Report Var(flag_aggressive_loop_optimizations) Optimization Init(1) |