Commit 5bb2a292 by Mark Mitchell Committed by Mark Mitchell

decl.c (init_decl_processing): Complain if -fnew-abi -fno-vtable-thunks is used.

	* decl.c (init_decl_processing): Complain if -fnew-abi
	-fno-vtable-thunks is used.

From-SVN: r31441
parent 84602ee0
2000-01-16 Mark Mitchell <mark@codesourcery.com>
* decl.c (init_decl_processing): Complain if -fnew-abi
-fno-vtable-thunks is used.
* decl2.c (lang_decode_option): Don't couple flag_honor_std to
flag_new_abi.
......
......@@ -5956,6 +5956,11 @@ init_decl_processing ()
int wchar_type_size;
tree array_domain_type;
/* Check to see that the user did not specify an invalid combination
of command-line options. */
if (flag_new_abi && !flag_vtable_thunks)
fatal ("the new ABI requires vtable thunks");
/* Have to make these distinct before we try using them. */
lang_name_cplusplus = get_identifier ("C++");
lang_name_c = get_identifier ("C");
......
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