]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - include/clang/Basic/DiagnosticCrossTUKinds.td
Vendor import of clang trunk r351319 (just before the release_80 branch
[FreeBSD/FreeBSD.git] / include / clang / Basic / DiagnosticCrossTUKinds.td
1 //==--- DiagnosticCrossTUKinds.td - Cross Translation Unit 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 = "CrossTU" in {
11
12 def err_ctu_error_opening : Error<
13   "error opening '%0': required by the CrossTU functionality">;
14
15 def err_extdefmap_parsing : Error<
16   "error parsing index file: '%0' line: %1 'UniqueID filename' format "
17   "expected">;
18
19 def err_multiple_def_index : Error<
20   "multiple definitions are found for the same key in index ">;
21
22 def warn_ctu_incompat_triple : Warning<
23   "imported AST from '%0' had been generated for a different target, "
24   "current: %1, imported: %2">, InGroup<CrossTU>;
25 }