Skip to content

Commit 95f1411

Browse files
committed
Compiler: typo
1 parent 9315996 commit 95f1411

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

compiler/lib/parse_bytecode.ml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1865,7 +1865,7 @@ and compile infos pc state (instrs : instr list) =
18651865

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

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

19061906
if debug_parser ()
19071907
then (
1908-
Format.printf "%a = ccal \"%s\" (" Var.print x prim;
1908+
Format.printf "%a = ccall \"%s\" (" Var.print x prim;
19091909
for i = 0 to nargs - 1 do
19101910
if i > 0 then Format.printf ", ";
19111911
Format.printf "%a" Var.print (List.nth args i)

0 commit comments

Comments
 (0)