Skip to content

Commit

Permalink
acb_mat_mul_reorder: mark helper functions as static noinline
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrik-johansson committed Jan 19, 2024
1 parent 3350fb4 commit 02e2384
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/acb_mat/mul_reorder.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

#include "acb_mat.h"

static void
FLINT_STATIC_NOINLINE void
copy_re_shallow(arb_mat_t X, const acb_mat_t A)
{
slong M, N, i, j;
Expand All @@ -22,7 +22,7 @@ copy_re_shallow(arb_mat_t X, const acb_mat_t A)
*arb_mat_entry(X, i, j) = *acb_realref(acb_mat_entry(A, i, j));
}

static void
FLINT_STATIC_NOINLINE void
copy_im_shallow(arb_mat_t X, const acb_mat_t A)
{
slong M, N, i, j;
Expand All @@ -33,7 +33,7 @@ copy_im_shallow(arb_mat_t X, const acb_mat_t A)
*arb_mat_entry(X, i, j) = *acb_imagref(acb_mat_entry(A, i, j));
}

static void
FLINT_STATIC_NOINLINE void
clear_shallow(arb_mat_t X)
{
slong M, N, i, j;
Expand Down

0 comments on commit 02e2384

Please sign in to comment.