Skip to content

Commit 891f20d

Browse files
committed
Merge pull request #5894 from Azoy/rename-reflection-library
Update Swift reflection library name
1 parent ef88a52 commit 891f20d

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

lldb/source/Plugins/LanguageRuntime/Swift/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ add_lldb_library(lldbPluginSwiftLanguageRuntime PLUGIN
88
LINK_LIBS
99
swiftAST
1010
swiftBasic
11-
swiftReflection
11+
swiftRemoteInspection
1212
swiftRemoteAST
1313
lldbCore
1414
lldbExpression

lldb/source/Plugins/LanguageRuntime/Swift/LLDBMemoryReader.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
// We need to include ReflectionContext.h before TypeLowering.h to avoid
99
// conflicts between mach/machine.h and llvm/BinaryFormat/MachO.h.
10-
#include "swift/Reflection/ReflectionContext.h"
11-
#include "swift/Reflection/TypeLowering.h"
10+
#include "swift/RemoteInspection/ReflectionContext.h"
11+
#include "swift/RemoteInspection/TypeLowering.h"
1212

1313
#include "llvm/ADT/SmallSet.h"
1414
#include "llvm/Support/Memory.h"

lldb/source/Plugins/LanguageRuntime/Swift/SwiftLanguageRuntime.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
#include "swift/AST/Decl.h"
4343
#include "swift/AST/Module.h"
4444
#include "swift/Demangling/Demangle.h"
45-
#include "swift/Reflection/ReflectionContext.h"
45+
#include "swift/RemoteInspection/ReflectionContext.h"
4646
#include "swift/RemoteAST/RemoteAST.h"
4747

4848
#include "clang/AST/ASTContext.h"

lldb/source/Plugins/LanguageRuntime/Swift/SwiftLanguageRuntimeDynamicTypeResolution.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
#include "swift/AST/Decl.h"
3434
#include "swift/AST/Types.h"
3535
#include "swift/Demangling/Demangle.h"
36-
#include "swift/Reflection/ReflectionContext.h"
37-
#include "swift/Reflection/TypeRefBuilder.h"
36+
#include "swift/RemoteInspection/ReflectionContext.h"
37+
#include "swift/RemoteInspection/TypeRefBuilder.h"
3838
#include "swift/Remote/MemoryReader.h"
3939
#include "swift/RemoteAST/RemoteAST.h"
4040
#include "swift/Runtime/Metadata.h"

lldb/source/Plugins/LanguageRuntime/Swift/SwiftLanguageRuntimeImpl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#include "LLDBMemoryReader.h"
1717
#include "SwiftLanguageRuntime.h"
1818
#include "SwiftMetadataCache.h"
19-
#include "swift/Reflection/TypeLowering.h"
19+
#include "swift/RemoteInspection/TypeLowering.h"
2020
#include "llvm/Support/Memory.h"
2121

2222
namespace swift {

lldb/source/Plugins/LanguageRuntime/Swift/SwiftMetadataCache.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include "llvm/Support/DJB.h"
1111
#include "llvm/Support/OnDiskHashTable.h"
1212

13-
#include "swift/Reflection/ReflectionContext.h"
13+
#include "swift/RemoteInspection/ReflectionContext.h"
1414
#include "swift/Remote/ExternalTypeRefCache.h"
1515

1616
namespace lldb_private {

0 commit comments

Comments
 (0)