Skip to content

Commit 63aa8cf

Browse files
authored
[NFC][Clang][TableGen] Fix file header comments (llvm#116491)
1 parent 2edfa50 commit 63aa8cf

21 files changed

+35
-23
lines changed

clang/utils/TableGen/ASTTableGen.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//=== ASTTableGen.cpp - Helper functions for working with AST records -----===//
1+
//===-- ASTTableGen.cpp - Helper functions for working with AST records ---===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

clang/utils/TableGen/ClangASTNodesEmitter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//=== ClangASTNodesEmitter.cpp - Generate Clang AST node tables -*- C++ -*-===//
1+
//===-- ClangASTNodesEmitter.cpp - Generate Clang AST node tables ---------===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

clang/utils/TableGen/ClangASTPropertiesEmitter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//=== ClangASTPropsEmitter.cpp - Generate Clang AST properties --*- C++ -*-===//
1+
//===-- ClangASTPropsEmitter.cpp - Generate Clang AST properties ----------===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

clang/utils/TableGen/ClangAttrEmitter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===- ClangAttrEmitter.cpp - Generate Clang attribute handling =-*- C++ -*--=//
1+
//===-- ClangAttrEmitter.cpp - Generate Clang attribute handling ----------===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

clang/utils/TableGen/ClangBuiltinsEmitter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//=- ClangBuiltinsEmitter.cpp - Generate Clang builtins tables -*- C++ -*-====//
1+
//===-- ClangBuiltinsEmitter.cpp - Generate Clang builtins tables ---------===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

clang/utils/TableGen/ClangCommentCommandInfoEmitter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- ClangCommentCommandInfoEmitter.cpp - Generate command lists -----====//
1+
//===-- ClangCommentCommandInfoEmitter.cpp - Generate command lists -------===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

clang/utils/TableGen/ClangCommentHTMLNamedCharacterReferenceEmitter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- ClangCommentHTMLNamedCharacterReferenceEmitter.cpp -----------------=//
1+
//===-- ClangCommentHTMLNamedCharacterReferenceEmitter.cpp ----------------===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

clang/utils/TableGen/ClangCommentHTMLTagsEmitter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- ClangCommentHTMLTagsEmitter.cpp - Generate HTML tag list for Clang -=//
1+
//===-- ClangCommentHTMLTagsEmitter.cpp - Generate HTML tag list ----------===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

clang/utils/TableGen/ClangDataCollectorsEmitter.cpp

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
//===-- ClangDataCollectorsEmitter.cpp - Generate Clang data collector ----===//
2+
//
3+
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4+
// See https://llvm.org/LICENSE.txt for license information.
5+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6+
//
7+
//===----------------------------------------------------------------------===//
8+
//
9+
// This tablegen backend emit Clang data collector tables.
10+
//
11+
//===----------------------------------------------------------------------===//
12+
113
#include "TableGenBackends.h"
214
#include "llvm/TableGen/Record.h"
315
#include "llvm/TableGen/TableGenBackend.h"

clang/utils/TableGen/ClangDiagnosticsEmitter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//=- ClangDiagnosticsEmitter.cpp - Generate Clang diagnostics tables -*- C++ -*-
1+
//===-- ClangDiagnosticsEmitter.cpp - Generate Clang diagnostics tables ---===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

clang/utils/TableGen/ClangOpcodesEmitter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//=== ClangOpcodesEmitter.cpp - constexpr interpreter opcodes ---*- C++ -*-===//
1+
//===-- ClangOpcodesEmitter.cpp - constexpr interpreter opcodes -----------===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

clang/utils/TableGen/ClangOpenCLBuiltinEmitter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===- ClangOpenCLBuiltinEmitter.cpp - Generate Clang OpenCL Builtin handling
1+
//===-- ClangOpenCLBuiltinEmitter.cpp - Generate OpenCL Builtin handling --===//
22
//
33
// The LLVM Compiler Infrastructure
44
//

clang/utils/TableGen/ClangOptionDocEmitter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===- ClangOptionDocEmitter.cpp - Documentation for command line flags ---===//
1+
//===-- ClangOptionDocEmitter.cpp - Documentation for command line flags --===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

clang/utils/TableGen/ClangSACheckersEmitter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//=- ClangSACheckersEmitter.cpp - Generate Clang SA checkers tables -*- C++ -*-
1+
//===-- ClangSACheckersEmitter.cpp - Generate SA checkers tables ----------===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

clang/utils/TableGen/ClangSyntaxEmitter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===- ClangSyntaxEmitter.cpp - Generate clang Syntax Tree nodes ----------===//
1+
//===-- ClangSyntaxEmitter.cpp - Generate clang Syntax Tree nodes ---------===//
22
//
33
// The LLVM Compiler Infrastructure
44
//

clang/utils/TableGen/ClangTypeNodesEmitter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//=== ClangTypeNodesEmitter.cpp - Generate type node tables -----*- C++ -*-===//
1+
//===-- ClangTypeNodesEmitter.cpp - Generate type node tables -------------===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

clang/utils/TableGen/MveEmitter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===- MveEmitter.cpp - Generate arm_mve.h for use with clang -*- C++ -*-=====//
1+
//===-- MveEmitter.cpp - Generate arm_mve.h for use with clang ------------===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

clang/utils/TableGen/NeonEmitter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===- NeonEmitter.cpp - Generate arm_neon.h for use with clang -*- C++ -*-===//
1+
//===-- NeonEmitter.cpp - Generate arm_neon.h for use with clang ----------===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

clang/utils/TableGen/RISCVVEmitter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===- RISCVVEmitter.cpp - Generate riscv_vector.h for use with clang -----===//
1+
//===-- RISCVVEmitter.cpp - Generate riscv_vector.h for use with clang ----===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

clang/utils/TableGen/SveEmitter.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
//===- SveEmitter.cpp - Generate arm_sve.h for use with clang -*- C++ -*-===//
1+
//===-- SveEmitter.cpp - Generate arm_sve.h for use with clang ------------===//
22
//
3-
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4-
// See https://llvm.org/LICENSE.txt for license information.
5-
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
3+
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4+
// See https://llvm.org/LICENSE.txt for license information.
5+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
66
//
77
//===----------------------------------------------------------------------===//
88
//

clang/utils/TableGen/TableGen.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===- TableGen.cpp - Top-Level TableGen implementation for Clang ---------===//
1+
//===-- TableGen.cpp - Top-Level TableGen implementation for Clang --------===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

0 commit comments

Comments
 (0)