1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

[Clang interpreter] Rename Block.{h,cpp} to InterpBlock.{h,cpp}

The Blocks runtime provide a header named Block.h.
It is generally preferable to avoid name collision with system headers
(reducing reliance on -isystem order, more friendly when navigating files in
an editor, etc).

Reviewed By: gribozavr2

Differential Revision: https://reviews.llvm.org/D74934
This commit is contained in:
Fangrui Song 2020-02-20 14:54:22 -08:00
parent 934fdf7731
commit a6c30bdac4

View File

@ -81,7 +81,6 @@ static_library("AST") {
"ExternalASTSource.cpp",
"FormatString.cpp",
"InheritViz.cpp",
"Interp/Block.cpp",
"Interp/ByteCodeEmitter.cpp",
"Interp/ByteCodeExprGen.cpp",
"Interp/ByteCodeGenError.cpp",
@ -93,6 +92,7 @@ static_library("AST") {
"Interp/Frame.cpp",
"Interp/Function.cpp",
"Interp/Interp.cpp",
"Interp/InterpBlock.cpp",
"Interp/InterpFrame.cpp",
"Interp/InterpStack.cpp",
"Interp/InterpState.cpp",