File tree 3 files changed +5
-1
lines changed
3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -339,7 +339,9 @@ let print_warning loc ppf w =
339
339
;;
340
340
341
341
let formatter_for_warnings = ref err_formatter;;
342
- let prerr_warning loc w = print_warning loc ! formatter_for_warnings w;;
342
+ let prerr_warning loc w =
343
+ if not ! Clflags. bs_quiet then
344
+ print_warning loc ! formatter_for_warnings w;;
343
345
344
346
let echo_eof () =
345
347
print_newline () ;
Original file line number Diff line number Diff line change @@ -418,4 +418,5 @@ let dont_record_crc_unit : string option ref = ref None
418
418
let bs_only = ref false
419
419
let bs_gentype = ref None
420
420
let no_assert_false = ref false
421
+ let bs_quiet = ref false
421
422
#end
Original file line number Diff line number Diff line change @@ -242,4 +242,5 @@ val dont_record_crc_unit : string option ref
242
242
val bs_only : bool ref (* set true on bs top*)
243
243
val bs_gentype : string option ref
244
244
val no_assert_false : bool ref
245
+ val bs_quiet : bool ref
245
246
#end
You can’t perform that action at this time.
0 commit comments