Skip to content

Commit 3686529

Browse files
authored
Merge pull request #85824 from augusto2112/use-anonymous-address-6.3
[RemoteInspection] Use the address returned by resolveRemoteAddress
2 parents 884c501 + 7c9ac60 commit 3686529

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/swift/Remote/MetadataReader.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2923,7 +2923,7 @@ class MetadataReader {
29232923
RemoteAddress address(descriptor.getRemoteAddress());
29242924
address = Reader->resolveRemoteAddress(address).value_or(address);
29252925
snprintf(addressBuf, sizeof(addressBuf), "$%" PRIx64,
2926-
(uint64_t)descriptor.getRemoteAddress().getRawAddress());
2926+
(uint64_t)address.getRawAddress());
29272927
auto anonNode = dem.createNode(Node::Kind::AnonymousContext);
29282928
CharVector addressStr;
29292929
addressStr.append(addressBuf, dem);

0 commit comments

Comments
 (0)