diff options
author | Richard Stallman <rms@gnu.org> | 1993-04-09 21:42:29 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-04-09 21:42:29 +0000 |
commit | 5f12e361fa79d7e2a5853422aca607df3493a170 (patch) | |
tree | c2033c0e1eee24d01e0e0d77e22b51cbe161313b | |
parent | 73509aec0f34dcf5a960064d79444d1206cd6862 (diff) | |
download | gcc-5f12e361fa79d7e2a5853422aca607df3493a170.zip gcc-5f12e361fa79d7e2a5853422aca607df3493a170.tar.gz gcc-5f12e361fa79d7e2a5853422aca607df3493a170.tar.bz2 |
(no_precomp): Make it 1 by default.
From-SVN: r4057
-rw-r--r-- | gcc/cccp.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -409,8 +409,10 @@ static FILE *pcp_outfile; uses requiring them. */ static int pcp_inside_if; -/* Nonzero means never to include precompiled files. */ -static int no_precomp; +/* Nonzero means never to include precompiled files. + This is 1 since there's no way now to make precompiled files, + so it's not worth testing for them. */ +static int no_precomp = 1; /* Nonzero means give all the error messages the ANSI standard requires. */ |