Skip to content

Commit c537db7

Browse files
committed
[compiler] add quiet support
1 parent 50ab9ba commit c537db7

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

parsing/location.ml

+3-1
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,9 @@ let print_warning loc ppf w =
339339
;;
340340

341341
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;;
343345

344346
let echo_eof () =
345347
print_newline ();

utils/clflags.ml

+1
Original file line numberDiff line numberDiff line change
@@ -418,4 +418,5 @@ let dont_record_crc_unit : string option ref = ref None
418418
let bs_only = ref false
419419
let bs_gentype = ref None
420420
let no_assert_false = ref false
421+
let bs_quiet = ref false
421422
#end

utils/clflags.mli

+1
Original file line numberDiff line numberDiff line change
@@ -242,4 +242,5 @@ val dont_record_crc_unit : string option ref
242242
val bs_only : bool ref (* set true on bs top*)
243243
val bs_gentype : string option ref
244244
val no_assert_false : bool ref
245+
val bs_quiet : bool ref
245246
#end

0 commit comments

Comments
 (0)