elikaski
elikaski
Could be nice to have user-defined enums ``` enum RESULT { SUCCESS=0, FAILURE=1, UNKNOWN=2 } ``` That can be used inside switch-case as literals: ``` switch (result) { case SUCCESS:...
With the new design of functions, it might be possible to support recursion By compiling the function recursively, up to a certain depth, that is given at compilation time Add...
I see it has many great features Would be nice if we knew how to use them @makolath
Add the ability to include comments in the compile code, for every source code line. For example, if we have: ``` if (x) {y;} ``` Will compile to something like:...
**Environment information** * Operating System: Ubuntu 18.04.3 * Cutter version: 1.10.3 * Obtained from: - [x] Built from source - [ ] Downloaded from release - [ ] Distribution repository...
Compiling a simple Hello World program generates assembly code that contains: ``` # (external call) movl (sp), %esp # movl $printf, (external) ``` When using post/xor.py (and other post scripts),...