diff options
author | Iain Sandoe <iains@gcc.gnu.org> | 2011-11-30 10:42:58 +0000 |
---|---|---|
committer | Iain Sandoe <iains@gcc.gnu.org> | 2011-11-30 10:42:58 +0000 |
commit | fea3ca9130aa2ba28ea5176b647c80f2ebc7670a (patch) | |
tree | b653e1b6a2f0c5f5fadb055efeb46c96ad475c0e /gcc/gccspec.c | |
parent | 0f14d442fcb906786e4db5b4ce010ff25fb462e7 (diff) | |
download | gcc-fea3ca9130aa2ba28ea5176b647c80f2ebc7670a.zip gcc-fea3ca9130aa2ba28ea5176b647c80f2ebc7670a.tar.gz gcc-fea3ca9130aa2ba28ea5176b647c80f2ebc7670a.tar.bz2 |
shift flag_next/gnu_runtime to modern opts system.
gcc:
* doc/tm.texi.in (NEXT_OBJC_RUNTIME): Update macro description.
* doc/tm.texi: Regenerate.
* flags.h (flag_next_runtime): Remove references.
* toplev.c: Likewise.
* defaults.h (NEXT_OBJC_RUNTIME): Provide default.
* gccspec.c (lang_specific_driver): Adjust use of NEXT_OBJC_RUNTIME.
* config/darwin.c (darwin_override_options): Provide default
Objective-C abi settings and target conflict checks.
* config/darwin.h (SUBTARGET_C_COMMON_OVERRIDE_OPTIONS): Remove unused
code. Adjust indenting.
gcc/c-family:
* c.opt (fgnu-runtime): Provide full description.
(fnext-runtime): Likewise.
* c-opts.c (OPT_fgnu_runtime, OPT_fnext_runtime) Remove.
From-SVN: r181837
Diffstat (limited to 'gcc/gccspec.c')
-rw-r--r-- | gcc/gccspec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gccspec.c b/gcc/gccspec.c index 746ebf0..e161359 100644 --- a/gcc/gccspec.c +++ b/gcc/gccspec.c @@ -33,7 +33,7 @@ lang_specific_driver (struct cl_decoded_option **in_decoded_options ATTRIBUTE_UN /* Systems which use the NeXT runtime by default should arrange for the shared libgcc to be used when -fgnu-runtime is passed through specs. */ -#if defined(ENABLE_SHARED_LIBGCC) && ! defined(NEXT_OBJC_RUNTIME) +#if defined(ENABLE_SHARED_LIBGCC) && ! NEXT_OBJC_RUNTIME unsigned int i; /* The new argument list will be contained in this. */ |