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 do function call with __builtin_isnan as argument #45

Open GabrielRavier opened 4 years ago

GabrielRavier commented 4 years ago
void f(int);

void g(float x)
{
  f(__builtin_isnan(x));
}

cparser outputs this :

ir/be/betranshlp.c:216: libFirm panic in be_transform_node: no transformer for Mux Is[71:12]
Aborted (core dumped)