From 5bb2a29215a030947f7c9fc03b9ad8af9e6280e2 Mon Sep 17 00:00:00 2001 From: Mark Mitchell Date: Sun, 16 Jan 2000 17:06:42 +0000 Subject: [PATCH] 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 --- gcc/cp/ChangeLog | 3 +++ gcc/cp/decl.c | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index cd58e5c7404..e4850d6cd5b 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,5 +1,8 @@ 2000-01-16 Mark Mitchell + * 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. diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index 935fd3acbb9..d8a57e56f2b 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -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"); -- 2.30.2