Skip to content

Commit 5ae0873

Browse files
add dummy mangling
1 parent 78fe7c4 commit 5ae0873

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

clang/lib/AST/ItaniumMangle.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4945,6 +4945,12 @@ void CXXNameMangler::mangleExpression(const Expr *E, unsigned Arity,
49454945
E = cast<ConstantExpr>(E)->getSubExpr();
49464946
goto recurse;
49474947

4948+
case Expr::CXXReflectExprClass: {
4949+
// TODO: implement this after introducing std::meta::info
4950+
// and add info in APValue
4951+
break;
4952+
}
4953+
49484954
// FIXME: invent manglings for all these.
49494955
case Expr::BlockExprClass:
49504956
case Expr::ChooseExprClass:

0 commit comments

Comments
 (0)