]> granicus.if.org Git - clang/commitdiff
add some basic file headers
authorChris Lattner <sabre@nondot.org>
Wed, 28 Jan 2009 06:31:57 +0000 (06:31 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 28 Jan 2009 06:31:57 +0000 (06:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63188 91177308-0d34-0410-b5e6-96231b3b80d8

13 files changed:
clang.xcodeproj/project.pbxproj
include/clang/Basic/DiagnosticAST.h
include/clang/Basic/DiagnosticASTKinds.def
include/clang/Basic/DiagnosticAnalysis.h
include/clang/Basic/DiagnosticAnalysisKinds.def
include/clang/Basic/DiagnosticCommonKinds.def
include/clang/Basic/DiagnosticDriver.h
include/clang/Basic/DiagnosticLex.h
include/clang/Basic/DiagnosticLexKinds.def
include/clang/Basic/DiagnosticParse.h
include/clang/Basic/DiagnosticParseKinds.def
include/clang/Basic/DiagnosticSema.h
include/clang/Basic/DiagnosticSemaKinds.def

index 5d36c5f653fd773d77a2d6406d4eb8e9f13200ee..226c4fcdc20b1e10028af35da3f596eb8307ffea 100644 (file)
                        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 */,
index 4f8382bdca040b27222b3f5638b0c38c43d10351..1a140167e6ce622d7aaa84867d741489ade32094 100644 (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
 
index 6f39559bc086a75d1d7e1179e5ba33acd5b453f3..c57ee6538e97fd878125fbbb7da238245331506a 100644 (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,
index fc13eea4c966bd9e35eb6ba132083208248094dd..9dc008ec138f31ca7c5fa7566c2c96ecdc1f4992 100644 (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
 
index d8768ba910abdf4fedba90b9798bc564f2aeb489..17897ed90f6061be8a24ce6f7816d70ea85c8c45 100644 (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,
index aab81acefc6a83c5d0cd476dbc89d24d5a452efe..1bdaf6ab3dad11ea19378ff3fde6203704cc84df 100644 (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
 //===----------------------------------------------------------------------===//
index 44e93b4d3caca226fdfa5efd8b68cd9f383686c9..60cdfcdb8aed156990c9f1d74bfa8fe624493879 100644 (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
 
index 90665b5bad4e6e475348708e88b6c891f35ecb90..5430b730fb1cd63a7a308ada3c217e62f535ac8c 100644 (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
 
index 54394e10709db2811446fac74467ba9e61c74234..6965698964461d2278066b13fa8d421edd35abc3 100644 (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
 //===----------------------------------------------------------------------===//
index 81a073e84153bae28bea6e2c7b644e78aa0a45c1..272f6ef868a440faa4edec34afc5800032a11210 100644 (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
 
index 6b87ff26ab164bb4bfccfce72fe3bea882cb70a4..a4e2011bee526b46153ff486136cd8c7e4987144 100644 (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
 //===----------------------------------------------------------------------===//
index 9ed7ca4c6e553d8056ab7ee1c0438a1c8e68a801..c0644a1d37e706a2250dae575286a371b78a28f0 100644 (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
 
index b412bca184eff93e3197cf3e398979f6ad607dc0..f73f6ee23fb49753bba305df1f0a864f13e5bdd1 100644 (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