Deleted Added
full compact
DiagnosticFrontendKinds.td (199482) DiagnosticFrontendKinds.td (199990)
1//==--- DiagnosticFrontendKinds.td - frontend 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
10let Component = "Frontend" in {
11
12def err_fe_error_opening : Error<"error opening '%0': %1">;
13def err_fe_error_reading : Error<"error reading '%0'">;
14def err_fe_error_reading_stdin : Error<"error reading stdin">;
15def err_fe_error_backend : Error<"error in backend: %0">, DefaultFatal;
16def err_fe_invalid_ast_file : Error<"invalid AST file: '%0'">, DefaultFatal;
17def err_fe_invalid_ast_action : Error<"invalid action for AST input">, DefaultFatal;
18def err_fe_invalid_code_complete_file
19 : Error<"cannot locate code-completion file %0">, DefaultFatal;
1//==--- DiagnosticFrontendKinds.td - frontend 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
10let Component = "Frontend" in {
11
12def err_fe_error_opening : Error<"error opening '%0': %1">;
13def err_fe_error_reading : Error<"error reading '%0'">;
14def err_fe_error_reading_stdin : Error<"error reading stdin">;
15def err_fe_error_backend : Error<"error in backend: %0">, DefaultFatal;
16def err_fe_invalid_ast_file : Error<"invalid AST file: '%0'">, DefaultFatal;
17def err_fe_invalid_ast_action : Error<"invalid action for AST input">, DefaultFatal;
18def err_fe_invalid_code_complete_file
19 : Error<"cannot locate code-completion file %0">, DefaultFatal;
20def err_fe_stdout_binary : Error<"unable to change standard output to binary">,
21 DefaultFatal;
20def err_fe_dependency_file_requires_MT : Error<
21 "-dependency-file requires at least one -MT option">;
22def err_fe_incompatible_options : Error<
23 "'%0' cannot be used with '%1'">, DefaultFatal;
24def err_fe_no_fixit_and_codegen : Error<
25 "FIX-ITs cannot be applied when generating code">;
26def err_fe_unable_to_find_fixit_file : Error<
27 "FIX-IT could not find file '%0'">;

--- 161 unchanged lines hidden ---
22def err_fe_dependency_file_requires_MT : Error<
23 "-dependency-file requires at least one -MT option">;
24def err_fe_incompatible_options : Error<
25 "'%0' cannot be used with '%1'">, DefaultFatal;
26def err_fe_no_fixit_and_codegen : Error<
27 "FIX-ITs cannot be applied when generating code">;
28def err_fe_unable_to_find_fixit_file : Error<
29 "FIX-IT could not find file '%0'">;

--- 161 unchanged lines hidden ---