Skip to content

Commit 34c3c40

Browse files
authored
label always_inline function as inline to silence a gcc warning
1 parent ee90f30 commit 34c3c40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/power/zgemv_t_4.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ static void zgemv_kernel_4x1(BLASLONG n, FLOAT *ap, FLOAT *x, FLOAT *y, FLOAT al
513513

514514
#endif
515515

516-
static __attribute__((always_inline)) void copy_x(BLASLONG n, FLOAT *src, FLOAT *dest, BLASLONG inc_src) {
516+
static __attribute__((always_inline)) inline void copy_x(BLASLONG n, FLOAT *src, FLOAT *dest, BLASLONG inc_src) {
517517
BLASLONG i;
518518
for (i = 0; i < n; i++) {
519519
*dest = *src;

0 commit comments

Comments
 (0)