From ff9038093a6f3f629bcd8115a714cadc3ea48ad1 Mon Sep 17 00:00:00 2001 From: jsm28 Date: Tue, 31 Mar 2009 12:43:29 +0000 Subject: PR preprocessor/15638 gcc: * c-common.c (c_cpp_error): Handle CPP_DL_FATAL. gcc/fortran: * cpp.c (cb_cpp_error): Handle CPP_DL_FATAL. gcc/testsuite: * gcc.dg/cpp/missing-header-1.c: New test. * gcc.dg/cpp/include2.c: Only test #include <>. Expect "compilation terminated" message. * gcc.dg/cpp/include2a.c: New test. Copy of include2.c but only test #include "". * gcc.dg/pch/counter-2.c, gcc.dg/pch/valid-1.c, gcc.dg/pch/valid-2.c, gcc.dg/pch/warn-1.c: Expect "compilation terminated" message. libcpp: * files.c (_cpp_find_file): Call open_file_failed after diagnosing invalid PCH. (open_file_failed): Make error for missing file fatal. * include/cpplib.h (CPP_DL_FATAL): Define. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@145341 138bc75d-0d04-0410-961f-82ee72b054a4 --- libcpp/include/cpplib.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libcpp/include') diff --git a/libcpp/include/cpplib.h b/libcpp/include/cpplib.h index ffde40eef1a..adc6cf13ede 100644 --- a/libcpp/include/cpplib.h +++ b/libcpp/include/cpplib.h @@ -813,6 +813,8 @@ cpp_num cpp_num_sign_extend (cpp_num, size_t); #define CPP_DL_ICE 0x04 /* An informative note following a warning. */ #define CPP_DL_NOTE 0x05 +/* A fatal error. */ +#define CPP_DL_FATAL 0x06 /* Output a diagnostic of some kind. */ extern bool cpp_error (cpp_reader *, int, const char *msgid, ...) -- cgit v1.2.1