git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63188 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2009-01-28 06:31:57 +00:00
Родитель 23b8eaa836
Коммит 47354ed151
13 изменённых файлов: 107 добавлений и 1 удалений

Просмотреть файл

@ -1068,13 +1068,13 @@
isa = PBXGroup;
children = (
DED7D7310A524295003AD0FB /* Diagnostic.h */,
DED7D7320A524295003AD0FB /* DiagnosticKinds.def */,
DEA099FD0F302C65000C2258 /* DiagnosticAnalysis.h */,
DEA099FE0F302C65000C2258 /* DiagnosticAnalysisKinds.def */,
DEA099FF0F302C65000C2258 /* DiagnosticAST.h */,
DEA09A000F302C65000C2258 /* DiagnosticASTKinds.def */,
DEA09A010F302C65000C2258 /* DiagnosticCommonKinds.def */,
DEA09A020F302C65000C2258 /* DiagnosticDriver.h */,
DED7D7320A524295003AD0FB /* DiagnosticKinds.def */,
DEA09A030F302C65000C2258 /* DiagnosticLex.h */,
DEA09A040F302C65000C2258 /* DiagnosticLexKinds.def */,
DEA09A050F302C65000C2258 /* DiagnosticParse.h */,

Просмотреть файл

@ -1,3 +1,12 @@
//===--- DiagnosticAST.h - Diagnostics for the AST library ------*- 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_DIAGNOSTICAST_H
#define LLVM_CLANG_DIAGNOSTICAST_H

Просмотреть файл

@ -1,3 +1,11 @@
//==--- DiagnosticASTKinds.def - libast diagnostics -------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifdef ASTSTART
__ASTSTART = DIAG_START_AST,

Просмотреть файл

@ -1,3 +1,12 @@
//===--- DiagnosticAnalysis.h - Diagnostics for libanalysis -----*- 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_DIAGNOSTICANALYSIS_H
#define LLVM_CLANG_DIAGNOSTICANALYSIS_H

Просмотреть файл

@ -1,3 +1,11 @@
//==--- DiagnosticAnalysisKinds.def - libanalysis diagnostics ---*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifdef ANALYSISSTART
__ANALYSISSTART = DIAG_START_ANALYSIS,

Просмотреть файл

@ -1,3 +1,12 @@
//==--- 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
//===----------------------------------------------------------------------===//

Просмотреть файл

@ -1,3 +1,12 @@
//===--- DiagnosticDriver.h - Diagnostics for the driver --------*- 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_DIAGNOSTICDRIVER_H
#define LLVM_CLANG_DIAGNOSTICDRIVER_H

Просмотреть файл

@ -1,3 +1,12 @@
//===--- DiagnosticLex.h - Diagnostics for liblex ---------------*- 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_DIAGNOSTICLEX_H
#define LLVM_CLANG_DIAGNOSTICLEX_H

Просмотреть файл

@ -1,3 +1,12 @@
//==--- DiagnosticLexKinds.def - liblex diagnostics -------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//===----------------------------------------------------------------------===//
// Lexer Diagnostics
//===----------------------------------------------------------------------===//

Просмотреть файл

@ -1,3 +1,12 @@
//===--- 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

Просмотреть файл

@ -1,3 +1,12 @@
//==--- DiagnosticParseKinds.def - libparse diagnostics ---------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//===----------------------------------------------------------------------===//
// Parser Diagnostics
//===----------------------------------------------------------------------===//

Просмотреть файл

@ -1,3 +1,12 @@
//===--- DiagnosticSema.h - Diagnostics for libsema -------------*- 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_DIAGNOSTICSEMA_H
#define LLVM_CLANG_DIAGNOSTICSEMA_H

Просмотреть файл

@ -1,5 +1,14 @@
//==--- DiagnosticSemaKinds.def - libsema diagnostics -----------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// Semantic Analysis
//
//===----------------------------------------------------------------------===//
#ifdef SEMASTART