diff options
author | Joseph Myers <joseph@codesourcery.com> | 2010-10-22 20:34:43 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2010-10-22 20:34:43 +0100 |
commit | c3fb2eb4b68b65e915ef235a383e66d58b6ba87a (patch) | |
tree | c41f3bb15ae3578619e6ef9eda42f0b84cfff654 /gcc/gcc.c | |
parent | 6a08ffca63fad95a1915c948452c7ab25bcade9e (diff) | |
download | gcc-c3fb2eb4b68b65e915ef235a383e66d58b6ba87a.zip gcc-c3fb2eb4b68b65e915ef235a383e66d58b6ba87a.tar.gz gcc-c3fb2eb4b68b65e915ef235a383e66d58b6ba87a.tar.bz2 |
gcc.c (DEFAULT_SWITCH_CURTAILS_COMPILATION, [...]): Remove.
* gcc.c (DEFAULT_SWITCH_CURTAILS_COMPILATION,
SWITCH_CURTAILS_COMPILATION): Remove.
* doc/tm.texi.in (SWITCH_CURTAILS_COMPILATION): Remove
documentation.
* doc/tm.texi: Regenerate.
* system.h (SWITCH_CURTAILS_COMPILATION): Poison.
From-SVN: r165855
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r-- | gcc/gcc.c | 11 |
1 files changed, 0 insertions, 11 deletions
@@ -859,17 +859,6 @@ struct user_specs static struct user_specs *user_specs_head, *user_specs_tail; -#ifdef HAVE_TARGET_EXECUTABLE_SUFFIX -/* This defines which switches stop a full compilation. */ -#define DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR) \ - ((CHAR) == 'c' || (CHAR) == 'S' || (CHAR) == 'E') - -#ifndef SWITCH_CURTAILS_COMPILATION -#define SWITCH_CURTAILS_COMPILATION(CHAR) \ - DEFAULT_SWITCH_CURTAILS_COMPILATION(CHAR) -#endif -#endif - /* Record the mapping from file suffixes for compilation specs. */ struct compiler |