Browse Source

Add return value so that freebsd system clang does not err out

tags/v0.3.4
Andrew 7 years ago
parent
commit
19c4bdd8b3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      kernel/x86_64/sgemm_beta_skylakex.c

+ 1
- 1
kernel/x86_64/sgemm_beta_skylakex.c View File

@@ -56,7 +56,7 @@ int CNAME(BLASLONG m, BLASLONG n, BLASLONG dummy1, FLOAT beta,
}

if (n == 0 || m == 0)
return;
return 0;

c_offset = c;



Loading…
Cancel
Save