Commit 84602ee0 by Mark Mitchell Committed by Mark Mitchell

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
parent 70ae3201
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.
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment