Skip to content

Commit a69c603

Browse files
author
Daniel Kroening
committed
add __builtin_isnormal
1 parent 83aeddd commit a69c603

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/ansi-c/c_typecheck_expr.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -2376,9 +2376,10 @@ exprt c_typecheck_baset::do_special_functions(
23762376
from_integer(1, expr.type())),
23772377
from_integer(0, expr.type()));
23782378
}
2379-
else if(identifier==CPROVER_PREFIX "isnormalf" ||
2380-
identifier==CPROVER_PREFIX "isnormald" ||
2381-
identifier==CPROVER_PREFIX "isnormalld")
2379+
else if(identifier == CPROVER_PREFIX "isnormalf" ||
2380+
identifier == CPROVER_PREFIX "isnormald" ||
2381+
identifier == CPROVER_PREFIX "isnormalld" ||
2382+
identifier == "__builtin_isnormal")
23822383
{
23832384
if(expr.arguments().size()!=1)
23842385
{

0 commit comments

Comments
 (0)