We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45b9828 commit f5ba18fCopy full SHA for f5ba18f
lldb/source/Plugins/LanguageRuntime/Swift/LLDBMemoryReader.cpp
@@ -768,11 +768,6 @@ LLDBMemoryReader::resolveRemoteAddressFromSymbolObjectFile(
768
}
769
770
bool LLDBMemoryReader::readMetadataFromFileCacheEnabled() const {
771
- auto &triple = m_process.GetTarget().GetArchitecture().GetTriple();
772
-
773
- // 32 doesn't have a flag bit we can reliably use, so reading from filecache
774
- // is disabled on it.
775
- return m_process.GetTarget().GetSwiftReadMetadataFromFileCache() &&
776
- triple.isArch64Bit();
+ return m_process.GetTarget().GetSwiftReadMetadataFromFileCache();
777
778
} // namespace lldb_private
0 commit comments