From 8763a45b8a5c6d51d53795573179ba66e479f288 Mon Sep 17 00:00:00 2001 From: Bernhard Schommer Date: Wed, 31 Aug 2016 16:36:39 +0200 Subject: Added conformance warning. This warning should be triggered if a feature is used that is not part of the code CompCert C language. Bug 18004 --- cparser/Cerrors.mli | 1 + 1 file changed, 1 insertion(+) (limited to 'cparser/Cerrors.mli') diff --git a/cparser/Cerrors.mli b/cparser/Cerrors.mli index b547188a..1ef8bb21 100644 --- a/cparser/Cerrors.mli +++ b/cparser/Cerrors.mli @@ -43,6 +43,7 @@ type warning_type = | Return_type (** void return in non-void function *) | Literal_range (** literal ranges *) | Unknown_pragmas (** unknown/unsupported pragma *) + | CompCert_conformance (** features that are not part of the CompCert C core language *) val warning : (string * int) -> warning_type -> ('a, Format.formatter, unit, unit, unit, unit) format6 -> 'a (** [warning (f,c) w fmt arg1 ... argN] formats the arguments [arg1] to [argN] as warining according to -- cgit