diff options
author | Mike Stump <mrs@apple.com> | 2007-03-06 00:48:47 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2007-03-06 00:48:47 +0000 |
commit | 1f1d51306154bf6a354ff988868d3183022011c0 (patch) | |
tree | 926625ccb9f896a1998fbb4c463fe5a2b9ccaf39 /gcc/opth-gen.awk | |
parent | 201141278667c89ad246224f65e70764e58e819f (diff) | |
download | gcc-1f1d51306154bf6a354ff988868d3183022011c0.tar.gz |
c-common.c (targetcm): Add.
* c-common.c (targetcm): Add.
* c-opts.c (c_common_handle_option): Handle language specific
target options.
* opts.c (handle_option): Verify language for target options, if
any are given.
* opth-gen.awk: Add CL_LANG_ALL.
* target-def.h (TARGET_HANDLE_C_OPTION): Add.
(TARGETCM_INITIALIZER): Add.
* target.h (struct gcc_targetcm): Add.
(targetcm): Add.
* targhooks.c (default_handle_c_option): Add.
* targhooks.h (default_handle_c_option): Add.
* doc/tm.texi (TARGET_HANDLE_C_OPTION): Add.
* config/darwin.opt (iframework): Add.
* config/darwin.h (TARGET_HAS_TARGETCM): Add.
* config/darwin-c.c (handle_c_option): Add.
(TARGET_HANDLE_C_OPTION): Add.
(targetcm): Add.
* doc/invoke.texi (Darwin Options): Add -iframework.
From-SVN: r122590
Diffstat (limited to 'gcc/opth-gen.awk')
-rw-r--r-- | gcc/opth-gen.awk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/opth-gen.awk b/gcc/opth-gen.awk index e7ffc1a646e..97abcf06b7a 100644 --- a/gcc/opth-gen.awk +++ b/gcc/opth-gen.awk @@ -139,6 +139,7 @@ for (i = 0; i < n_langs; i++) { s = substr(" ", length (macros[i])) print "#define " macros[i] s " (1 << " i ")" } +print "#define CL_LANG_ALL ((1 << " n_langs ") - 1)" print "" print "enum opt_code" |