cparser icon indicating copy to clipboard operation
cparser copied to clipboard

cparser does not support converting unsigned to long double

Open GabrielRavier opened this issue 4 years ago • 0 comments

long double f(unsigned u)
{
  return u;
}

This aborts with this message :

ir/be/amd64/amd64_transform.c:2352: libFirm panic in conv_int_to_x87: unsigned int -> x87 NIY
Aborted (core dumped)

GabrielRavier avatar Jun 04 '20 22:06 GabrielRavier