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 e0f3a52 commit b88627fCopy full SHA for b88627f
libclc/utils/libclc-remangler/LibclcRemangler.cpp
@@ -178,7 +178,8 @@ class Remangler {
178
Remangler(ASTContext *ContextAST, const Node *Root,
179
SmallDenseMap<const char *, const char *> TypeReplacements)
180
: ContextAST(ContextAST), Root(Root), TypeReplacements(TypeReplacements) {
181
- MangleContext.reset(ContextAST->createMangleContext());
+ MangleContext.reset(ItaniumMangleContext::create(
182
+ *ContextAST, ContextAST->getDiagnostics()));
183
}
184
185
bool hasFailed() { return Failed; }
0 commit comments