Skip to content

Commit 61acb0b

Browse files
committed
[RemoteMirrors] Restore stripping signed pointer when iterating the
conformance cache 58df553 accidentally removed stripping this signed pointer. (cherry picked from commit 16918e7)
1 parent 93d855c commit 61acb0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/swift/RemoteInspection/ReflectionContext.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1383,7 +1383,7 @@ class ReflectionContext
13831383
for (StoredSize i = 0; i < Count; i++) {
13841384
auto &Element = ElementsData[i];
13851385
Call(RemoteAddress(Element.Type, ConformancesPtr.getAddressSpace()),
1386-
RemoteAddress(Element.Proto, ConformancesPtr.getAddressSpace()));
1386+
stripSignedPointer(Element.Proto));
13871387
}
13881388
}
13891389

0 commit comments

Comments
 (0)