Skip to content

Commit 0013946

Browse files
committed
AST: Fix ASTDumper for ArgumentShuffleExpr
1 parent 1ad5b70 commit 0013946

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/AST/ASTDumper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2150,7 +2150,7 @@ class PrintExpr : public ExprVisitor<PrintExpr> {
21502150
PrintWithColorRAII(OS, ParenthesisColor) << ')';
21512151
}
21522152
void visitArgumentShuffleExpr(ArgumentShuffleExpr *E) {
2153-
printCommon(E, "tuple_shuffle_expr");
2153+
printCommon(E, "argument_shuffle_expr");
21542154
switch (E->getTypeImpact()) {
21552155
case ArgumentShuffleExpr::ScalarToTuple:
21562156
OS << " scalar_to_tuple";

0 commit comments

Comments
 (0)