We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83aeddd commit a69c603Copy full SHA for a69c603
src/ansi-c/c_typecheck_expr.cpp
@@ -2376,9 +2376,10 @@ exprt c_typecheck_baset::do_special_functions(
2376
from_integer(1, expr.type())),
2377
from_integer(0, expr.type()));
2378
}
2379
- else if(identifier==CPROVER_PREFIX "isnormalf" ||
2380
- identifier==CPROVER_PREFIX "isnormald" ||
2381
- identifier==CPROVER_PREFIX "isnormalld")
+ else if(identifier == CPROVER_PREFIX "isnormalf" ||
+ identifier == CPROVER_PREFIX "isnormald" ||
+ identifier == CPROVER_PREFIX "isnormalld" ||
2382
+ identifier == "__builtin_isnormal")
2383
{
2384
if(expr.arguments().size()!=1)
2385
0 commit comments