added native double round(double) function
This commit is contained in:
parent
5661e39ca7
commit
380398bcd6
6 changed files with 10 additions and 0 deletions
|
|
@ -1741,6 +1741,8 @@ static double DoFLOP(int flop, double v)
|
|||
case FLOP_COSH: return g_cosh(v);
|
||||
case FLOP_SINH: return g_sinh(v);
|
||||
case FLOP_TANH: return g_tanh(v);
|
||||
|
||||
case FLOP_ROUND: return round(v);
|
||||
}
|
||||
assert(0);
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue