Skip to content

Commit

Permalink
Compiler: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
hhugo committed Oct 25, 2024
1 parent 9315996 commit 89f5a22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions compiler/lib/parse_bytecode.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1865,7 +1865,7 @@ and compile infos pc state (instrs : instr list) =

if debug_parser ()
then (
Format.printf "%a = ccal \"%s\" (" Var.print x prim;
Format.printf "%a = ccall \"%s\" (" Var.print x prim;
for i = 0 to nargs - 1 do
if i > 0 then Format.printf ", ";
Format.printf "%a" Var.print (List.nth args i)
Expand All @@ -1885,7 +1885,7 @@ and compile infos pc state (instrs : instr list) =

if debug_parser ()
then (
Format.printf "%a = ccal \"%s\" (" Var.print x prim;
Format.printf "%a = ccall \"%s\" (" Var.print x prim;
for i = 0 to nargs - 1 do
if i > 0 then Format.printf ", ";
Format.printf "%a" Var.print (List.nth args i)
Expand All @@ -1905,7 +1905,7 @@ and compile infos pc state (instrs : instr list) =

if debug_parser ()
then (
Format.printf "%a = ccal \"%s\" (" Var.print x prim;
Format.printf "%a = ccall \"%s\" (" Var.print x prim;
for i = 0 to nargs - 1 do
if i > 0 then Format.printf ", ";
Format.printf "%a" Var.print (List.nth args i)
Expand Down

0 comments on commit 89f5a22

Please sign in to comment.