From d4d33a89586b5210d1f0bc81d95fa2b640da659b Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sun, 18 Aug 2019 06:37:58 +0200 Subject: Cleanup on test failure --- src/bytecode/bytecode.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/bytecode/bytecode.c') diff --git a/src/bytecode/bytecode.c b/src/bytecode/bytecode.c index edc8dba..8daa4ce 100644 --- a/src/bytecode/bytecode.c +++ b/src/bytecode/bytecode.c @@ -107,11 +107,11 @@ static void add_intermediates(BytecodeCompilerContext *self) { static void add_strings(BytecodeCompilerContext *self) { /*doc(Bytecode strings) # Strings layout - |Type |Field |Description | - |-------|-----------------|------------------------------------------------------------------| - |u16 |Number of strings|The number of strings. | - |u32 |Strings size |The size of the strings section, in bytes. | - |String*|Strings data |Multiple strings, where the total size is defined by @Strings size| + |Type |Field |Description | + |------|-----------------|------------------------------------------------------------------| + |u16 |Number of strings|The number of strings. | + |u32 |Strings size |The size of the strings section, in bytes. | + |String|Strings data |Multiple strings, where the total size is defined by @Strings size| # String |Type|Field|Description | @@ -163,11 +163,11 @@ static void add_functions(BytecodeCompilerContext *self) { static void add_extern_functions(BytecodeCompilerContext *self) { /*doc(Bytecode external functions) # External functions layout - |Type |Field |Description | - |------------------|------------------|-----------------------------------------------------------------------------------------| - |u16 |num_extern_func |The number of external functions. | - |u32 |extern_funcs_size |The size of the external functions section, in bytes. | - |External function*|External functions|Multiple external functions, where the number of functions is defined by @num_extern_func| + |Type |Field |Description | + |-----------------|------------------|-----------------------------------------------------------------------------------------| + |u16 |num_extern_func |The number of external functions. | + |u32 |extern_funcs_size |The size of the external functions section, in bytes. | + |External function|External functions|Multiple external functions, where the number of functions is defined by @num_extern_func| # External function |Type|Field |Description | -- cgit v1.2.3