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 a5bdc4a commit f1e3e8aCopy full SHA for f1e3e8a
compiler-rt/lib/orc/macho_platform.cpp
@@ -944,8 +944,10 @@ Error MachOPlatformRuntimeState::lookupSymbols(
944
// be materialized.
945
std::vector<std::pair<std::string_view, bool>> MissingSymbols;
946
MissingSymbols.reserve(MissingSymbolIndexes.size());
947
- printdbg("requesting push of %i missing symbols...\n",
948
- MissingSymbolIndexes.size());
+ ORC_RT_DEBUG({
+ printdbg("requesting push of %i missing symbols...\n",
949
+ MissingSymbolIndexes.size());
950
+ });
951
for (auto MissingIdx : MissingSymbolIndexes)
952
MissingSymbols.push_back(Symbols[MissingIdx]);
953
0 commit comments