Mike

Results 15 issues of Mike

``` void foo(int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int); void puxc2(int vf, int ve, int vd, int vc, int vb,...

``` int gcd(int a, int b) { int r; while (b > 0) { r = a % b; a = b; b = r; } return a; } ```...

``` int g(int); int h(int); int foo(int v) { if (v < 0) return g(7); return h(13); } ``` → ``` define dso_local i257 @foo(i257 %v) local_unnamed_addr #0 { entry:...

``` struct __attribute__((tvm_tuple)) St { int value; __tvm_slice slice; }; void foo(__tvm_slice slice, struct St *st) { *st = __builtin_tvm_ldu(slice, 64); } ``` ``` test.cc:8:7: error: no viable overloaded '='...

Sample invocation ``` /tonlabs/tonos-cli/target/release/tonos-cli debug transaction \ --interactive --default_config --dbg_info Test.debug.json \ a4a926a3d779830418a81abda100b1b5decf941ec016f23108c5462da7616eea ```

In preparation for the upcoming espressif/arduino-esp32 3.0.0 release. At this point, this is more to see what's going wrong at compilation time. Update 1: basic things work as tested on...