summaryrefslogtreecommitdiffstats
path: root/include/clang/Basic/DiagnosticCrossTUKinds.td
blob: 89e261c84bc62c4070a5d14eb72b736c3195ea7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//==--- DiagnosticCrossTUKinds.td - Cross Translation Unit diagnostics ----===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

let Component = "CrossTU" in {

def err_ctu_error_opening : Error<
  "error opening '%0': required by the CrossTU functionality">;

def err_extdefmap_parsing : Error<
  "error parsing index file: '%0' line: %1 'UniqueID filename' format "
  "expected">;

def err_multiple_def_index : Error<
  "multiple definitions are found for the same key in index ">;

def warn_ctu_incompat_triple : Warning<
  "imported AST from '%0' had been generated for a different target, "
  "current: %1, imported: %2">, InGroup<CrossTU>;
}