Skip to content

Commit

Permalink
Run make clinic
Browse files Browse the repository at this point in the history
  • Loading branch information
vstinner committed Mar 13, 2024
1 parent ee1e65b commit b1f8b3f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions Modules/clinic/mathmodule.c.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Modules/mathmodule.c
Expand Up @@ -2336,7 +2336,7 @@ Compute (x * y) + z with a single round.

static PyObject *
math_fma_impl(PyObject *module, double x, double y, double z)
/*[clinic end generated code: output=4fc8626dbc278d17 input=2ae8bb2a6e0f8b77]*/
/*[clinic end generated code: output=4fc8626dbc278d17 input=e3ad1f4a4c89626e]*/
{
double r = fma(x, y, z);

Expand Down

0 comments on commit b1f8b3f

Please sign in to comment.