Refs #154. Fixed the build bug of dgemv_t on MinW64.

This commit is contained in:
Zhang Xianyi 2012-11-27 07:24:04 +08:00
parent 2345bdec68
commit cea1a885b5
1 changed files with 11 additions and 0 deletions

View File

@ -74,6 +74,11 @@
#define STACK_Y 72 + STACKSIZE(%rsp) #define STACK_Y 72 + STACKSIZE(%rsp)
#define STACK_INCY 80 + STACKSIZE(%rsp) #define STACK_INCY 80 + STACKSIZE(%rsp)
#define STACK_BUFFER 88 + STACKSIZE(%rsp) #define STACK_BUFFER 88 + STACKSIZE(%rsp)
//Temp variables for M,N,A,LDA
#define MMM 224(%rsp)
#define NN 232(%rsp)
#define AA 240(%rsp)
#define LDAX 248(%rsp)
#endif #endif
@ -134,6 +139,12 @@
movq OLD_A, A movq OLD_A, A
movq OLD_LDA, LDA movq OLD_LDA, LDA
movq OLD_X, X movq OLD_X, X
movq M, MMM
movq N, NN
movq A, AA
movq LDA, LDAX
#else #else
movq OLD_M, MMM movq OLD_M, MMM
movq OLD_N, NN movq OLD_N, NN