diff options
author | Joseph Myers <jsm@polyomino.org.uk> | 2004-10-03 21:53:05 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2004-10-03 21:53:05 +0100 |
commit | 3f75a25471fd0a824043ee42e33b2197eeb903f0 (patch) | |
tree | 9317be258ee227dd26354b571fba81483592c1ab /gcc/c-pch.c | |
parent | 57c1f13e476cea29f362f827c802e01b59f21025 (diff) | |
download | gcc-3f75a25471fd0a824043ee42e33b2197eeb903f0.tar.gz |
c-aux-info.c, [...]: Follow code formatting conventions.
* c-aux-info.c, c-common.c, c-common.h, c-cppbuiltin.c, c-decl.c,
c-format.c, c-incpath.c, c-lex.c, c-objc-common.c, c-opts.c,
c-parse.in, c-pch.c, c-ppoutput.c, c-pragma.c, c-typeck.c: Follow
code formatting conventions.
From-SVN: r88462
Diffstat (limited to 'gcc/c-pch.c')
-rw-r--r-- | gcc/c-pch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/c-pch.c b/gcc/c-pch.c index 04eee838dfa..8b212358087 100644 --- a/gcc/c-pch.c +++ b/gcc/c-pch.c @@ -99,7 +99,7 @@ static const char *get_ident (void); format. */ static const char * -get_ident(void) +get_ident (void) { static char result[IDENT_LENGTH]; static const char template[IDENT_LENGTH] = "gpch.012"; @@ -122,7 +122,7 @@ pch_init (void) void *target_validity; static const char partial_pch[IDENT_LENGTH] = "gpcWrite"; - if (! pch_file) + if (!pch_file) return; f = fopen (pch_file, "w+b"); @@ -484,7 +484,7 @@ c_common_pch_pragma (cpp_reader *pfile) return; } - if (! cpp_get_options (pfile)->preprocessed) + if (!cpp_get_options (pfile)->preprocessed) { error ("pch_preprocess pragma should only be used with -fpreprocessed"); inform ("use #include instead"); |