Nickolay Semyonov

Results 6 issues of Nickolay Semyonov

cparser segfaults on following code: ```c int main(void){ int i = 0; switch(i){ i = i + ({case 0:; 0;}); } return 0; } ``` ```shell $ ./cparser/build/debug/cparser -m32 switch0.c...

https://dart.dev/tools/dart-compile Instead of dart2native the following command should be used: ```shell mkdir -p dart/bin && dart compile exe dart/benchmark.dart -o dart/bin/benchmark ```

On ARM (and probably other platforms) unaligned 64-bit access is really slow. Instead of using 'STORE64(p, LOAD64(src))' macro, it is better to have special function for that. Logic was copied...

Input: ```python # Copyright comment """Common exceptions""" class CannotRun(Exception): """Thrown from Base classes when running is impossible""" pass ``` Obfuscated: (--obfuscate-builtins --replacement-length=11) ```python class CannotRun(kfgyztSaQBc): kfgyztSaQBc=Exception pass # Created by...

``` > see . Decompiling . Segmentation fault (core dumped) $ ./forth ok > : t 1 . ; ok > see t Decompiling t Segmentation fault (core dumped) ```...

Is it possible to support recursive sections like: ``` c cfg_opt_t group_opts[] = { CFG_SEC("item", item_opts, CFGF_MULTI|CFGF_TITLE|CFGF_NO_TITLE_DUPES), CFG_SEC("group", group_opts, CFGF_MULTI), CFG_END() }; ```