Skip to content

Commit 2f3a751

Browse files
committed
New FFI: reduce verbosity
Signed-off-by: Alastair Reid <[email protected]>
1 parent 81f1e67 commit 2f3a751

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

libASL/backend_c_new.ml

-2
Original file line numberDiff line numberDiff line change
@@ -1772,7 +1772,6 @@ let mk_ffi_wrappers (is_import : bool) (decl_map : (AST.declaration list) Bindin
17721772
let (mk_protos, mk_defns) =
17731773
infos
17741774
|> List.map (fun (c_name, asl_name, fty, loc) ->
1775-
PP.printf "%sing function '%a'\n" direction ident c_name;
17761775
if is_import then
17771776
mk_ffi_import_wrapper loc asl_name c_name fty
17781777
else
@@ -1789,7 +1788,6 @@ let ffi_track_enums (decl_map : (AST.declaration list) Bindings.t) (exports : st
17891788
let c_ident = Ident.mk_ident c_name in
17901789
( match Bindings.find_opt c_ident decl_map with
17911790
| Some (Decl_Enum (tc, es, loc) :: _) ->
1792-
PP.printf "Exporting type %a\n" ident tc;
17931791
add_enumerated_type tc es
17941792
| _ ->
17951793
()

0 commit comments

Comments
 (0)