1 |
e2068500
|
Temesghen Kahsai
|
(********************************************************************)
|
2 |
|
|
(* *)
|
3 |
|
|
(* The LustreC compiler toolset / The LustreC Development Team *)
|
4 |
|
|
(* Copyright 2012 - -- ONERA - CNRS - INPT *)
|
5 |
|
|
(* *)
|
6 |
|
|
(* LustreC is free software, distributed WITHOUT ANY WARRANTY *)
|
7 |
|
|
(* under the terms of the GNU Lesser General Public License *)
|
8 |
|
|
(* version 2.1. *)
|
9 |
|
|
(* *)
|
10 |
|
|
(********************************************************************)
|
11 |
|
|
|
12 |
|
|
let report ~level:level p =
|
13 |
|
|
if !Options.verbose_level >= level then
|
14 |
d50b0dc0
|
Temesghen Kahsai
|
begin
|
15 |
|
|
Format.eprintf "%t" p;
|
16 |
|
|
Format.pp_print_flush Format.err_formatter ()
|
17 |
|
|
end
|
18 |
e2068500
|
Temesghen Kahsai
|
|
19 |
|
|
(* Local Variables: *)
|
20 |
|
|
(* compile-command:"make -C .." *)
|
21 |
|
|
(* End: *)
|