freebsd_amp_hwpstate/include/clang/Parse/ParseDiagnostic.h

28 lines
751 B
C
Raw Normal View History

2009-06-02 17:58:47 +00:00
//===--- DiagnosticParse.h - Diagnostics for libparse -----------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_CLANG_DIAGNOSTICPARSE_H
#define LLVM_CLANG_DIAGNOSTICPARSE_H
#include "clang/Basic/Diagnostic.h"
namespace clang {
namespace diag {
enum {
2009-06-14 09:24:02 +00:00
#define DIAG(ENUM,FLAGS,DEFAULT_MAPPING,DESC,GROUP,SFINAE) ENUM,
2009-06-02 17:58:47 +00:00
#define PARSESTART
#include "clang/Basic/DiagnosticParseKinds.inc"
#undef DIAG
NUM_BUILTIN_PARSE_DIAGNOSTICS
};
} // end namespace diag
} // end namespace clang
#endif