Skip to content

Commit 640a872

Browse files
committed
Keep TableGen.cpp filename
1 parent db0cafc commit 640a872

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

llvm/utils/TableGen/Basic/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ add_llvm_library(LLVMTableGenBasic OBJECT EXCLUDE_FROM_ALL DISABLE_LLVM_LINK_LLV
1616
IntrinsicEmitter.cpp
1717
RISCVTargetDefEmitter.cpp
1818
SDNodeProperties.cpp
19-
TableGenStatics.cpp
19+
TableGen.cpp
2020
VTEmitter.cpp
2121
)
2222

llvm/utils/TableGen/Basic/TableGenStatics.cpp renamed to llvm/utils/TableGen/Basic/TableGen.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===- TableGenStatics.cpp ------------------------------------------------===//
1+
//===- TableGen.cpp - Top-Level TableGen implementation for LLVM ----------===//
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.
@@ -11,7 +11,7 @@
1111
//
1212
//===----------------------------------------------------------------------===//
1313

14-
#include "TableGenStatics.h"
14+
#include "TableGen.h"
1515
#include "llvm/ADT/StringRef.h"
1616
#include "llvm/Support/CommandLine.h"
1717
#include "llvm/Support/InitLLVM.h"

llvm/utils/TableGen/Basic/TableGenStatics.h renamed to llvm/utils/TableGen/Basic/TableGen.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===- TableGenStatics.h --------------------------------------------------===//
1+
//===- TableGen.h ---------------------------------------------------------===//
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.

llvm/utils/TableGen/llvm-min-tblgen.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//
1111
//===----------------------------------------------------------------------===//
1212

13-
#include "Basic/TableGenStatics.h"
13+
#include "Basic/TableGen.h"
1414

1515
/// Command line parameters are shared between llvm-tblgen and llvm-min-tblgen.
1616
/// The indirection to tblgen_main exists to ensure that the static variables

llvm/utils/TableGen/llvm-tblgen.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//
1111
//===----------------------------------------------------------------------===//
1212

13-
#include "Basic/TableGenStatics.h"
13+
#include "Basic/TableGen.h"
1414

1515
/// Command line parameters are shared between llvm-tblgen and llvm-min-tblgen.
1616
/// The indirection to tblgen_main exists to ensure that the static variables

0 commit comments

Comments
 (0)