Deleted Added
full compact
DiagnosticLexKinds.td (198893) DiagnosticLexKinds.td (199482)
1//==--- DiagnosticLexKinds.td - liblex 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//===----------------------------------------------------------------------===//

--- 76 unchanged lines hidden (view full) ---

85 "hexadecimal floating constants are a C99 feature">;
86def ext_binary_literal : Extension<
87 "binary integer literals are an extension">;
88def err_pascal_string_too_long : Error<"Pascal string is too long">;
89def warn_octal_escape_too_large : ExtWarn<"octal escape sequence out of range">;
90def warn_hex_escape_too_large : ExtWarn<"hex escape sequence out of range">;
91
92//===----------------------------------------------------------------------===//
1//==--- DiagnosticLexKinds.td - liblex 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//===----------------------------------------------------------------------===//

--- 76 unchanged lines hidden (view full) ---

85 "hexadecimal floating constants are a C99 feature">;
86def ext_binary_literal : Extension<
87 "binary integer literals are an extension">;
88def err_pascal_string_too_long : Error<"Pascal string is too long">;
89def warn_octal_escape_too_large : ExtWarn<"octal escape sequence out of range">;
90def warn_hex_escape_too_large : ExtWarn<"hex escape sequence out of range">;
91
92//===----------------------------------------------------------------------===//
93// PTH Diagnostics
94//===----------------------------------------------------------------------===//
95def err_pth_cannot_read : Error<
96 "PTH file '%0' could not be read">;
97def err_invalid_pth_file : Error<
98 "invalid or corrupt PTH file '%0'">;
99
100//===----------------------------------------------------------------------===//
93// Preprocessor Diagnostics
94//===----------------------------------------------------------------------===//
95def pp_hash_warning : Warning<"#warning%0">, InGroup<DiagGroup<"#warnings">>;
96def pp_include_next_in_primary : Warning<
97 "#include_next in primary source file">;
98def pp_include_macros_out_of_predefines : Error<
99 "the #__include_macros directive is only for internal use by -imacros">;
100def pp_include_next_absolute_path : Warning<"#include_next with absolute path">;

--- 190 unchanged lines hidden ---
101// Preprocessor Diagnostics
102//===----------------------------------------------------------------------===//
103def pp_hash_warning : Warning<"#warning%0">, InGroup<DiagGroup<"#warnings">>;
104def pp_include_next_in_primary : Warning<
105 "#include_next in primary source file">;
106def pp_include_macros_out_of_predefines : Error<
107 "the #__include_macros directive is only for internal use by -imacros">;
108def pp_include_next_absolute_path : Warning<"#include_next with absolute path">;

--- 190 unchanged lines hidden ---