From d7e2af2582660e3ed4ce824c33a21ffbf9ed4c6f Mon Sep 17 00:00:00 2001 From: Gediminas Jakutis Date: Wed, 3 Mar 2021 19:58:57 +0200 Subject: bit of comments. Signed-off-by: Gediminas Jakutis --- src/defs.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src') diff --git a/src/defs.h b/src/defs.h index 2c0d81c..20621ef 100644 --- a/src/defs.h +++ b/src/defs.h @@ -23,6 +23,8 @@ goto l;\ }} while (0); +/* 8 to 64 bits fit into basic types */ + #if entry_field_size == 8 # ifdef entry_field_signed typedef int8_t field; @@ -47,6 +49,9 @@ # else typedef uint64_t field; # endif + +/* 128 bit and up do not fit in basic types; building composites */ + #elif entry_field_size == 128 # ifdef entry_field_signed typedef struct field { -- cgit v1.2.3