libpicasso/source
Tillmann Karras eeda288b29 Add break
Don't use this instruction unless you know what you're doing. It does
*not* touch the if/call stacks, so the following code will behave in an
unexpected way (and cannot be fixed by inserting nops):

```
ifu true
    for ...
        ifu true
            break
        .end
    .end
.else
    ; will be executed since the inner if is still on the stack
.end
```

breakc has the same problem but does not require a separate condition.
2017-12-17 18:23:00 +01:00
..
FileClass.h Initial commit 2014-11-16 18:59:54 +01:00
maestro_opcodes.h Add break 2017-12-17 18:23:00 +01:00
picasso_assembler.cpp Add break 2017-12-17 18:23:00 +01:00
picasso_frontend.cpp Fix some compilation warnings/errors 2017-06-10 13:36:30 +02:00
picasso.h Fix some compilation warnings/errors 2017-06-10 13:36:30 +02:00
types.h Fix compilation with GCC 4.7 2015-10-25 19:33:29 +01:00