]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / contrib / llvm / tools / clang / include / clang / Basic / DiagnosticSerializationKinds.td
1 //==--- DiagnosticSerializationKinds.td - serialization diagnostics -------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 let Component = "Serialization" in {
11
12 def err_fe_unable_to_read_pch_file : Error<
13     "unable to read PCH file %0: '%1'">;
14 def err_fe_not_a_pch_file : Error<
15     "input is not a PCH file: '%0'">;
16 def err_fe_pch_malformed : Error<
17     "malformed or corrupted PCH file: '%0'">, DefaultFatal;
18 def err_fe_pch_malformed_block : Error<
19     "malformed block record in PCH file: '%0'">, DefaultFatal;
20 def err_fe_pch_file_modified : Error<
21     "file '%0' has been modified since the precompiled header '%1' was built">,
22     DefaultFatal;
23 def err_fe_pch_file_overridden : Error<
24     "file '%0' from the precompiled header has been overridden">;
25
26 def err_pch_targetopt_mismatch : Error<
27     "PCH file was compiled for the %0 '%1' but the current translation "
28     "unit is being compiled for target '%2'">;
29 def err_pch_targetopt_feature_mismatch : Error<
30     "%select{AST file|current translation unit}0 was compiled with the target "
31     "feature'%1' but the %select{current translation unit is|AST file was}0 "
32     "not">;
33 def err_pch_langopt_mismatch : Error<"%0 was %select{disabled|enabled}1 in "
34     "PCH file but is currently %select{disabled|enabled}2">;
35 def err_pch_langopt_value_mismatch : Error<
36   "%0 differs in PCH file vs. current file">;
37   
38 def warn_pch_version_too_old : Error<
39     "PCH file uses an older PCH format that is no longer supported">;
40 def warn_pch_version_too_new : Error<
41     "PCH file uses a newer PCH format that cannot be read">;
42 def warn_pch_different_branch : Error<
43     "PCH file built from a different branch (%0) than the compiler (%1)">;
44 def err_pch_with_compiler_errors : Error<
45     "PCH file contains compiler errors">;
46     
47 def warn_module_conflict : Warning<
48     "module '%0' conflicts with already-imported module '%1': %2">, 
49     InGroup<ModuleConflict>;
50
51 def err_pch_macro_def_undef : Error<
52     "macro '%0' was %select{defined|undef'd}1 in the precompiled header but "
53     "%select{undef'd|defined}1 on the command line">;
54 def err_pch_macro_def_conflict : Error<
55     "definition of macro '%0' differs between the precompiled header ('%1') "
56     "and the command line ('%2')">;
57 def err_pch_undef : Error<
58     "%select{command line contains|precompiled header was built with}0 "
59     "'-undef' but %select{precompiled header was not built with it|"
60     "it is not present on the command line}0">;
61 def err_pch_pp_detailed_record : Error<
62     "%select{command line contains|precompiled header was built with}0 "
63     "'-detailed-preprocessing-record' but %select{precompiled header was not "
64     "built with it|it is not present on the command line}0">;
65
66 def err_not_a_pch_file : Error<
67     "'%0' does not appear to be a precompiled header file">, DefaultFatal;
68 }