Skip to content

Commit fd41f62

Browse files
authored
Merge pull request #23581 from slavapestov/ast-dump-argument-shuffle
AST: Fix ASTDumper for ArgumentShuffleExpr
2 parents b584f36 + 0013946 commit fd41f62

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)