libfirm / cparser

C99 parser and frontend for libfirm
http://pp.ipd.kit.edu/firm
GNU General Public License v2.0
336 stars 38 forks source link

cparser fails to compile code using aliases #51

Open GabrielRavier opened 4 years ago

GabrielRavier commented 4 years ago
void alias(int flags) asm("open");
void alias(int flags) {}
int open() {}

cparser outputs this :

Verify warning: Return X[78:10](open[71]): number of inputs does not match method type (1 inputs, 0 declared)
Aborted (core dumped)