зеркало из https://github.com/microsoft/clang-1.git
add some basic file headers
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63188 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
23b8eaa836
Коммит
47354ed151
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче