Commits

Jerome Robert authored b17ccb4c5c5
Fix a segfault in gemv when MAX_STACK_ALLOC is set * stack_alloc_size is needed after the implementation call but it may be overwritten if it's optimized to a register, because some gemv implementation (ex: dgemv_n.S) do not restore all register (ex: r10). * do the same in ger.c for the same reasons even if the bug has not been observed.