Cesium icon indicating copy to clipboard operation
Cesium copied to clipboard

C compiler for the CLI platform

Results 100 Cesium issues
Sort by recently updated
recently updated
newest added

Support something called a "non-empty identifier list inside of a direct declarator". What it is? It's kinda hard to determine. So, please take a look at the corresponding `WipException` in...

kind:feature
status:help-wanted
area:compiler
area:parser

As often with declarations, it's unclear what the nested pointer declarations are. Something like `char **x`, perhaps? Anyway, look for the number `222` in the code to find clues to...

kind:feature
status:help-wanted
area:compiler

`const volatile char array[128]` doesn't seem to be supported as of now. We should support these. Look for the number `221` in the code to find clues to implement this...

kind:feature
status:help-wanted
area:compiler

Look for the number `219` in the code to find clues to implement this feature.

kind:feature
status:help-wanted
area:compiler

The title says it all. Look for the number `216` in the code to find clues to implement this feature.

kind:feature
status:help-wanted
area:compiler

Currently, we don't support this: ```c void foo() { typedef int xxx; xxx x; } ``` We should support this. Look for the number `214` in the code to find...

kind:feature
status:help-wanted
area:compiler

After parsing all the declarations, we should implement full support for them in the code generator. Look for the number `212` in the code to find clues to implement this...

kind:feature
area:compiler
status:blocked

After parsing all the statements, we should implement full support for them in the code generator. Look for the number `206` in the code to find clues to implement this...

kind:feature
area:cil-interop
area:standard-support
area:compiler
status:blocked

After parsing all the expressions, we should implement full support for them in the code generator. Look for the number `208` in the code to find clues to implement this...

kind:feature
area:cil-interop
area:compiler
status:blocked

``` int test() { return 1; } int main(void) { if (!test()) return -3; return 0; } ``` Produces ` Excessive output after the end of a translation unit at...

kind:feature
status:help-wanted
area:parser