Skip to content

Commit 43d0803

Browse files
authored
Merge pull request #5513 from yuyichao/arm-fix
More arm compilation fix
2 parents aef36a3 + 3d19d3b commit 43d0803

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

kernel/arm64/strmm_direct_arm64_sme1.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -227,10 +227,10 @@ static inline void strmm_direct_alpha_sme1_2VLx2VL(uint64_t m, uint64_t k, uint6
227227
}
228228

229229
#else
230-
void strmm_direct_sme1_preprocess(uint64_t nbr, uint64_t nbc,
231-
const float *restrict a, float *restrict a_mod) {}
232-
void strmm_direct_alpha_sme1_2VLx2VL(uint64_t m, uint64_t k, uint64_t n, const float* alpha,\
233-
const float *ba, float *restrict bb){}
230+
static void strmm_direct_sme1_preprocess(uint64_t nbr, uint64_t nbc,
231+
const float *restrict a, float *restrict a_mod) {}
232+
static void strmm_direct_alpha_sme1_2VLx2VL(uint64_t m, uint64_t k, uint64_t n, const float* alpha,\
233+
const float *ba, float *restrict bb){}
234234
#endif
235235

236236
void CNAME (BLASLONG M, BLASLONG N, float alpha, float * __restrict A,\

0 commit comments

Comments
 (0)