aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/gcc-interface
diff options
context:
space:
mode:
authorManuel López-Ibáñez <manu@gcc.gnu.org>2012-05-14 13:30:32 +0000
committerManuel López-Ibáñez <manu@gcc.gnu.org>2012-05-14 13:30:32 +0000
commitf2bc201f53e2b8b9b9d072b41c5099ee825686f4 (patch)
treefc0863eee154e2d3cc964810f8b77726fbaa7a94 /gcc/ada/gcc-interface
parente384e6b59c074ac936f0f3212ca33fe40f3d82f5 (diff)
downloadgcc-f2bc201f53e2b8b9b9d072b41c5099ee825686f4.zip
gcc-f2bc201f53e2b8b9b9d072b41c5099ee825686f4.tar.gz
gcc-f2bc201f53e2b8b9b9d072b41c5099ee825686f4.tar.bz2
re PR c/53063 (encode group options in the .opt files)
2012-05-14 Manuel López-Ibáñez <manu@gcc.gnu.org> PR 53063 c-family/ * c.opt (Wc++0X-compat,Wdelete-non-virtual-dtor,Wjump-misses-init, Wreorder): Use LangEnabledBy. * c-opts.c (c_common_handle_option): Do not enable them explicitly. Call lang-specific generated functions. (c_common_post_options): Do not set them here. gcc/ * doc/options.texi: (LangEnabledBy): Document it. * optc-gen.awk: Handle LangEnabledBy. * opth-gen.awk: Generate declaration for lang-specific functions. * opt-read.awk: Record lang numbers. * opt-functions.awk (flag_set_p): Ignore the arguments of flags. (lang_sanitized_name): New. ada/ * gcc-interface/misc.c: Include opts.h and options.h before tm.h. (gnat_handle_option): Call lang-specific generated function. fortran/ * options.c (gfc_handle_option): Call lang-specific generated function. From-SVN: r187462
Diffstat (limited to 'gcc/ada/gcc-interface')
-rw-r--r--gcc/ada/gcc-interface/misc.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ada/gcc-interface/misc.c b/gcc/ada/gcc-interface/misc.c
index ad15f67..f2002f5 100644
--- a/gcc/ada/gcc-interface/misc.c
+++ b/gcc/ada/gcc-interface/misc.c
@@ -26,6 +26,8 @@
#include "config.h"
#include "system.h"
#include "coretypes.h"
+#include "opts.h"
+#include "options.h"
#include "tm.h"
#include "tree.h"
#include "diagnostic.h"
@@ -36,8 +38,6 @@
#include "toplev.h"
#include "langhooks.h"
#include "langhooks-def.h"
-#include "opts.h"
-#include "options.h"
#include "plugin.h"
#include "real.h"
#include "function.h" /* For pass_by_reference. */
@@ -153,6 +153,10 @@ gnat_handle_option (size_t scode, const char *arg ATTRIBUTE_UNUSED, int value,
gcc_unreachable ();
}
+ Ada_handle_option_auto (&global_options, &global_options_set,
+ scode, arg, value,
+ gnat_option_lang_mask (), kind,
+ loc, handlers, global_dc);
return true;
}