Skip to content

Commit 26c4eb6

Browse files
authored
Restore the quick return in common code - the earlier one is CBLAS only
1 parent 3dc0ba5 commit 26c4eb6

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

interface/trsm.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -381,8 +381,12 @@ if (strcmp(gotoblas_corename(), "armv9sme") == 0
381381
#endif
382382
#endif
383383

384+
385+
386+
//end of the ifndef CBLAS ... else ... section
384387
#endif
385388

389+
if ((args.m == 0) || (args.n == 0)) return;
386390
IDEBUG_START;
387391

388392
FUNCTION_PROFILE_START();

0 commit comments

Comments
 (0)