Skip to content

Commit

Permalink
test:hl: Update test with implemented VAArgExpr.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jezurko committed Mar 11, 2024
1 parent 89580e6 commit 0815eb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/vast/Dialect/HighLevel/vararg-b.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ int average(int count, ...) {
int sum = 0;
for(int i = 0; i < count; i++) {
sum += va_arg(args, int);
// CHECK: VAArgExpr
// CHECK: hl.va_arg_expr
}

va_end(args);
Expand Down

0 comments on commit 0815eb4

Please sign in to comment.