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.
2 parents 7b90628 + 7ca3876 commit fb89229Copy full SHA for fb89229
lib/FrontendTool/TBD.cpp
@@ -102,7 +102,9 @@ static bool validateSymbolSet(DiagnosticEngine &diags,
102
if (!GV->isDeclaration() && externallyVisible) {
103
// Is it listed?
104
if (!symbols.erase(name))
105
- irNotTBD.push_back(name);
+ // Note: Add the unmangled name to the irNotTBD list, which is owned
106
+ // by the IRModule, instead of the mangled name.
107
+ irNotTBD.push_back(unmangledName);
108
}
109
} else {
110
assert(symbols.find(name) == symbols.end() &&
0 commit comments