From 9e9ef45a2315694bf6efbfe8b8c9a0dd9f19e292 Mon Sep 17 00:00:00 2001 From: Bernhard Schommer Date: Mon, 6 Feb 2017 14:33:12 +0100 Subject: Generalized function to allow adding hex strings. The intconst function comes with an optional parameter to add an hex string for later printing. --- cparser/Cutil.mli | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cparser/Cutil.mli') diff --git a/cparser/Cutil.mli b/cparser/Cutil.mli index ee3c7625..5e560e44 100644 --- a/cparser/Cutil.mli +++ b/cparser/Cutil.mli @@ -221,8 +221,8 @@ val field_of_arrow_access: Env.t -> typ -> string -> field (* Constructors *) -val intconst : int64 -> ikind -> exp - (* Build expression for given integer constant. *) +val intconst : ?hex:bool -> int64 -> ikind -> exp + (* Build expression for given integer constant with optional hex string. *) val floatconst0 : exp (* Build expression for (double)0. *) val nullconst : exp -- cgit