diff options
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index bdf47c4..d925e91 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -4914,7 +4914,7 @@ c_common_init (filename) /* NULL is passed up to toplev.c and we exit quickly. */ if (flag_preprocess_only) { - cpp_preprocess_file (parse_in); + preprocess_file (); return NULL; } @@ -4930,17 +4930,6 @@ c_common_init (filename) return filename; } -/* Common finish hook for the C, ObjC and C++ front ends. */ -void -c_common_finish () -{ - cpp_finish (parse_in); - - /* For performance, avoid tearing down cpplib's internal structures. - Call cpp_errors () instead of cpp_destroy (). */ - errorcount += cpp_errors (parse_in); -} - static void c_init_attributes () { |