diff options
author | Mark Mitchell <mark@codesourcery.com> | 2000-01-16 17:03:49 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2000-01-16 17:03:49 +0000 |
commit | 84602ee016cdbb92fa65fd49b595e0000e915e0b (patch) | |
tree | 059b91a07ec81eed8853a7385fc07ec544ad9309 | |
parent | 70ae32012466e09d67dd4eed3f74ea74f9c2629e (diff) | |
download | gcc-84602ee016cdbb92fa65fd49b595e0000e915e0b.zip gcc-84602ee016cdbb92fa65fd49b595e0000e915e0b.tar.gz gcc-84602ee016cdbb92fa65fd49b595e0000e915e0b.tar.bz2 |
decl2.c (lang_decode_option): Don't couple flag_honor_std to flag_new_abi.
* decl2.c (lang_decode_option): Don't couple flag_honor_std to
flag_new_abi.
From-SVN: r31440
-rw-r--r-- | gcc/cp/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cp/decl2.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 8915d02..cd58e5c 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2000-01-16 Mark Mitchell <mark@codesourcery.com> + + * decl2.c (lang_decode_option): Don't couple flag_honor_std to + flag_new_abi. + 2000-01-15 Mark Mitchell <mark@codesourcery.com> * cp-tree.h (num_extra_vtbl_entries): New function. diff --git a/gcc/cp/decl2.c b/gcc/cp/decl2.c index e982311..40b656f 100644 --- a/gcc/cp/decl2.c +++ b/gcc/cp/decl2.c @@ -619,14 +619,12 @@ lang_decode_option (argc, argv) { flag_new_abi = 1; flag_do_squangling = 1; - flag_honor_std = 1; flag_vtable_thunks = 1; } else if (!strcmp (p, "no-new-abi")) { flag_new_abi = 0; flag_do_squangling = 0; - flag_honor_std = 0; } else if (!strncmp (p, "template-depth-", 15)) max_tinst_depth |