Fixes https://github.com/goblint/cil/issues/78, by replacing calls to __builtin_nanX which may not appear in locations where we expect a constant value, e.g. global initializers, with the expression 0./0. which will yield NaN (on any sensible machine).
Fixes https://github.com/goblint/cil/issues/78, by replacing calls to
__builtin_nanX
which may not appear in locations where we expect a constant value, e.g. global initializers, with the expression0./0.
which will yield NaN (on any sensible machine).Needed for https://github.com/goblint/bench/issues/14