From 47354ed151fe0543e138ccebd3dfe7acfcb291d1 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 28 Jan 2009 06:31:57 +0000 Subject: [PATCH] add some basic file headers git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63188 91177308-0d34-0410-b5e6-96231b3b80d8 --- clang.xcodeproj/project.pbxproj | 2 +- include/clang/Basic/DiagnosticAST.h | 9 +++++++++ include/clang/Basic/DiagnosticASTKinds.def | 8 ++++++++ include/clang/Basic/DiagnosticAnalysis.h | 9 +++++++++ include/clang/Basic/DiagnosticAnalysisKinds.def | 8 ++++++++ include/clang/Basic/DiagnosticCommonKinds.def | 9 +++++++++ include/clang/Basic/DiagnosticDriver.h | 9 +++++++++ include/clang/Basic/DiagnosticLex.h | 9 +++++++++ include/clang/Basic/DiagnosticLexKinds.def | 9 +++++++++ include/clang/Basic/DiagnosticParse.h | 9 +++++++++ include/clang/Basic/DiagnosticParseKinds.def | 9 +++++++++ include/clang/Basic/DiagnosticSema.h | 9 +++++++++ include/clang/Basic/DiagnosticSemaKinds.def | 9 +++++++++ 13 files changed, 107 insertions(+), 1 deletion(-) diff --git a/clang.xcodeproj/project.pbxproj b/clang.xcodeproj/project.pbxproj index 5d36c5f653..226c4fcdc2 100644 --- a/clang.xcodeproj/project.pbxproj +++ b/clang.xcodeproj/project.pbxproj @@ -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 */, diff --git a/include/clang/Basic/DiagnosticAST.h b/include/clang/Basic/DiagnosticAST.h index 4f8382bdca..1a140167e6 100644 --- a/include/clang/Basic/DiagnosticAST.h +++ b/include/clang/Basic/DiagnosticAST.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 diff --git a/include/clang/Basic/DiagnosticASTKinds.def b/include/clang/Basic/DiagnosticASTKinds.def index 6f39559bc0..c57ee6538e 100644 --- a/include/clang/Basic/DiagnosticASTKinds.def +++ b/include/clang/Basic/DiagnosticASTKinds.def @@ -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, diff --git a/include/clang/Basic/DiagnosticAnalysis.h b/include/clang/Basic/DiagnosticAnalysis.h index fc13eea4c9..9dc008ec13 100644 --- a/include/clang/Basic/DiagnosticAnalysis.h +++ b/include/clang/Basic/DiagnosticAnalysis.h @@ -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 diff --git a/include/clang/Basic/DiagnosticAnalysisKinds.def b/include/clang/Basic/DiagnosticAnalysisKinds.def index d8768ba910..17897ed90f 100644 --- a/include/clang/Basic/DiagnosticAnalysisKinds.def +++ b/include/clang/Basic/DiagnosticAnalysisKinds.def @@ -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, diff --git a/include/clang/Basic/DiagnosticCommonKinds.def b/include/clang/Basic/DiagnosticCommonKinds.def index aab81acefc..1bdaf6ab3d 100644 --- a/include/clang/Basic/DiagnosticCommonKinds.def +++ b/include/clang/Basic/DiagnosticCommonKinds.def @@ -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 //===----------------------------------------------------------------------===// diff --git a/include/clang/Basic/DiagnosticDriver.h b/include/clang/Basic/DiagnosticDriver.h index 44e93b4d3c..60cdfcdb8a 100644 --- a/include/clang/Basic/DiagnosticDriver.h +++ b/include/clang/Basic/DiagnosticDriver.h @@ -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 diff --git a/include/clang/Basic/DiagnosticLex.h b/include/clang/Basic/DiagnosticLex.h index 90665b5bad..5430b730fb 100644 --- a/include/clang/Basic/DiagnosticLex.h +++ b/include/clang/Basic/DiagnosticLex.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 diff --git a/include/clang/Basic/DiagnosticLexKinds.def b/include/clang/Basic/DiagnosticLexKinds.def index 54394e1070..6965698964 100644 --- a/include/clang/Basic/DiagnosticLexKinds.def +++ b/include/clang/Basic/DiagnosticLexKinds.def @@ -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 //===----------------------------------------------------------------------===// diff --git a/include/clang/Basic/DiagnosticParse.h b/include/clang/Basic/DiagnosticParse.h index 81a073e841..272f6ef868 100644 --- a/include/clang/Basic/DiagnosticParse.h +++ b/include/clang/Basic/DiagnosticParse.h @@ -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 diff --git a/include/clang/Basic/DiagnosticParseKinds.def b/include/clang/Basic/DiagnosticParseKinds.def index 6b87ff26ab..a4e2011bee 100644 --- a/include/clang/Basic/DiagnosticParseKinds.def +++ b/include/clang/Basic/DiagnosticParseKinds.def @@ -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 //===----------------------------------------------------------------------===// diff --git a/include/clang/Basic/DiagnosticSema.h b/include/clang/Basic/DiagnosticSema.h index 9ed7ca4c6e..c0644a1d37 100644 --- a/include/clang/Basic/DiagnosticSema.h +++ b/include/clang/Basic/DiagnosticSema.h @@ -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 diff --git a/include/clang/Basic/DiagnosticSemaKinds.def b/include/clang/Basic/DiagnosticSemaKinds.def index b412bca184..f73f6ee23f 100644 --- a/include/clang/Basic/DiagnosticSemaKinds.def +++ b/include/clang/Basic/DiagnosticSemaKinds.def @@ -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 -- 2.40.0