blob: 019e9c0de80a26c30410525aee90c52cdf293bdd [file] [log] [blame]
//==--- DiagnosticCommonKinds.def - common diagnostics ----------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//===----------------------------------------------------------------------===//
// Common Helpers
//===----------------------------------------------------------------------===//
DIAG(note_previous_definition, NOTE,
"previous definition is here")
DIAG(note_previous_declaration, NOTE,
"previous declaration is here")
DIAG(note_previous_implicit_declaration, NOTE,
"previous implicit declaration is here")
DIAG(note_previous_use, NOTE,
"previous use is here")
DIAG(note_duplicate_case_prev, NOTE,
"previous case defined here")
DIAG(note_forward_declaration, NOTE,
"forward declaration of %0")
DIAG(note_type_being_defined, NOTE,
"definition of %0 is not complete until the closing '}'")
/// note_matching - this is used as a continuation of a previous diagnostic,
/// e.g. to specify the '(' when we expected a ')'.
DIAG(note_matching, NOTE,
"to match this '%0'")
DIAG(note_using_decl, NOTE,
"using")
DIAG(note_also_found_decl, NOTE,
"also found")
// Parse && Lex
DIAG(err_expected_colon, ERROR,
"expected ':'")
// Parse && Sema
DIAG(err_no_declarators, ERROR,
"declaration does not declare anything")
DIAG(err_param_redefinition, ERROR,
"redefinition of parameter %0")
DIAG(err_invalid_storage_class_in_func_decl, ERROR,
"invalid storage class specifier in function declarator")
DIAG(err_expected_namespace_name, ERROR,
"expected namespace name")
// Sema && Lex
DIAG(ext_longlong, EXTENSION,
"'long long' is an extension when C99 mode is not enabled")
DIAG(warn_integer_too_large, WARNING,
"integer constant is too large for its type")
DIAG(warn_integer_too_large_for_signed, WARNING,
"integer constant is so large that it is unsigned")
// Sema && AST
DIAG(note_invalid_subexpr_in_ice, NOTE,
"subexpression not valid in an integer constant expression")
// Driver
DIAG(pp_macro_not_used, WARNING, // -Wunused-macros
"macro is not used")
DIAG(err_pp_I_dash_not_supported, ERROR,
"-I- not supported, please use -iquote instead")
DIAG(warn_pp_undef_identifier, WARNING,
"%0 is not defined, evaluates to 0")