diff options
author | bloodstalker <thabogre@gmail.com> | 2018-05-28 13:55:37 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2018-05-28 13:55:37 +0000 |
commit | 0c522ec5bfee22c7de54987d316cfbf245a8826e (patch) | |
tree | 7023705e17e7d78226b436329f81841db6dfbd9b /bruiser/wasm/test/linker/file1.c | |
parent | load.py is now imported bt another python module, should cut down on startup ... (diff) | |
download | mutator-0c522ec5bfee22c7de54987d316cfbf245a8826e.tar.gz mutator-0c522ec5bfee22c7de54987d316cfbf245a8826e.zip |
added test files for the wasm linker. added two scripts to extra-tools
Diffstat (limited to 'bruiser/wasm/test/linker/file1.c')
-rw-r--r-- | bruiser/wasm/test/linker/file1.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/bruiser/wasm/test/linker/file1.c b/bruiser/wasm/test/linker/file1.c new file mode 100644 index 0000000..233eaad --- /dev/null +++ b/bruiser/wasm/test/linker/file1.c @@ -0,0 +1,25 @@ +#include <stdio.h> +#include <inttypes.h> +#if 1 +void print(void) { + printf("external symbol"); +} +#endif + +#define CODE_SECTION_1_0 "constant_1_0" +#define CODE_SECTION_1_1 "constant_1_1" +#define CODE_SECTION_1_2 "constant_1_2" +#define CODE_SECTION_1_3 "constant_1_3" +#define CODE_SECTION_1_4 "constant_1_4" + +int g_int_1_0 = 10; +int g_int_1_1 = 11; + +int dummy_f_1_0(int n) { + if (n >= 1) return dummy_f_1_0(n-1) * n; + else return 1; +} + +int dymmy_f_1_1(int n) { + return n*2; +} |