Skip to content

Commit

Permalink
shader:msl: add missing ; semicolon for function call statements
Browse files Browse the repository at this point in the history
  • Loading branch information
alichraghi committed Jan 26, 2024
1 parent 5cb9728 commit 0d68419
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shader/codegen/msl.zig
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ fn emitStatement(msl: *Msl, inst_idx: InstIndex) error{ OutOfMemory, ConstExpr }
.discard => try msl.emitDiscard(),
// .@"break" => try msl.emitBreak(),
.@"continue" => try msl.writeAll("continue;\n"),
.call => |inst| try msl.emitCall(inst),
.call,
.assign,
.nil_intrinsic,
.texture_store,
Expand Down

0 comments on commit 0d68419

Please sign in to comment.