add some basic file headers

llvm-svn: 63188
This commit is contained in:
Chris Lattner 2009-01-28 06:31:57 +00:00
parent 4daeccf28f
commit 5fdc227326
13 changed files with 107 additions and 1 deletions

View File

@ -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 */,

View File

@ -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

View File

@ -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,

View File

@ -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

View File

@ -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,

View File

@ -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
//===----------------------------------------------------------------------===//

View File

@ -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

View File

@ -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

View File

@ -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
//===----------------------------------------------------------------------===//

View File

@ -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

View File

@ -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
//===----------------------------------------------------------------------===//

View File

@ -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

View File

@ -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