Skip to content

Commit 82fe793

Browse files
committed
[gn] Port AST/ByteCode #104552
1 parent 321de07 commit 82fe793

File tree

3 files changed

+27
-27
lines changed

3 files changed

+27
-27
lines changed

llvm/utils/gn/secondary/clang/lib/AST/BUILD.gn

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import("//clang/utils/TableGen/clang_tablegen.gni")
33
clang_tablegen("Opcodes") {
44
visibility = [ ":AST" ]
55
args = [ "-gen-clang-opcodes" ]
6-
td_file = "Interp/Opcodes.td"
6+
td_file = "ByteCode/Opcodes.td"
77
}
88

99
clang_tablegen("AttrDocTable") {
@@ -92,31 +92,31 @@ static_library("AST") {
9292
"ExternalASTSource.cpp",
9393
"FormatString.cpp",
9494
"InheritViz.cpp",
95-
"Interp/ByteCodeEmitter.cpp",
96-
"Interp/Compiler.cpp",
97-
"Interp/Context.cpp",
98-
"Interp/Descriptor.cpp",
99-
"Interp/Disasm.cpp",
100-
"Interp/DynamicAllocator.cpp",
101-
"Interp/EvalEmitter.cpp",
102-
"Interp/EvaluationResult.cpp",
103-
"Interp/Floating.cpp",
104-
"Interp/Frame.cpp",
105-
"Interp/Function.cpp",
106-
"Interp/Interp.cpp",
107-
"Interp/InterpBlock.cpp",
108-
"Interp/InterpBuiltin.cpp",
109-
"Interp/InterpFrame.cpp",
110-
"Interp/InterpShared.cpp",
111-
"Interp/InterpStack.cpp",
112-
"Interp/InterpState.cpp",
113-
"Interp/MemberPointer.cpp",
114-
"Interp/Pointer.cpp",
115-
"Interp/PrimType.cpp",
116-
"Interp/Program.cpp",
117-
"Interp/Record.cpp",
118-
"Interp/Source.cpp",
119-
"Interp/State.cpp",
95+
"ByteCode/ByteCodeEmitter.cpp",
96+
"ByteCode/Compiler.cpp",
97+
"ByteCode/Context.cpp",
98+
"ByteCode/Descriptor.cpp",
99+
"ByteCode/Disasm.cpp",
100+
"ByteCode/DynamicAllocator.cpp",
101+
"ByteCode/EvalEmitter.cpp",
102+
"ByteCode/EvaluationResult.cpp",
103+
"ByteCode/Floating.cpp",
104+
"ByteCode/Frame.cpp",
105+
"ByteCode/Function.cpp",
106+
"ByteCode/Interp.cpp",
107+
"ByteCode/InterpBlock.cpp",
108+
"ByteCode/InterpBuiltin.cpp",
109+
"ByteCode/InterpFrame.cpp",
110+
"ByteCode/InterpShared.cpp",
111+
"ByteCode/InterpStack.cpp",
112+
"ByteCode/InterpState.cpp",
113+
"ByteCode/MemberPointer.cpp",
114+
"ByteCode/Pointer.cpp",
115+
"ByteCode/PrimType.cpp",
116+
"ByteCode/Program.cpp",
117+
"ByteCode/Record.cpp",
118+
"ByteCode/Source.cpp",
119+
"ByteCode/State.cpp",
120120
"ItaniumCXXABI.cpp",
121121
"ItaniumMangle.cpp",
122122
"JSONNodeDumper.cpp",

llvm/utils/gn/secondary/clang/unittests/BUILD.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import("//clang/lib/StaticAnalyzer/Frontend/enable.gni")
33
group("unittests") {
44
deps = [
55
"AST:ASTTests",
6-
"AST/Interp:InterpTests",
6+
"AST/ByteCode:InterpTests",
77
"ASTMatchers:ASTMatchersTests",
88
"ASTMatchers/Dynamic:DynamicASTMatchersTests",
99
"Basic:BasicTests",

0 commit comments

Comments
 (0)