Refs #177. Fixed sgemv_t compiling bug on Win64.
This commit is contained in:
parent
8b122ff9dc
commit
08bf6674d5
|
@ -1,4 +1,5 @@
|
||||||
/*********************************************************************/
|
;; 2c
|
||||||
|
1
|
||||||
/* Copyright 2009, 2010 The University of Texas at Austin. */
|
/* Copyright 2009, 2010 The University of Texas at Austin. */
|
||||||
/* All rights reserved. */
|
/* All rights reserved. */
|
||||||
/* */
|
/* */
|
||||||
|
@ -75,8 +76,8 @@
|
||||||
#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)
|
||||||
#defien MMM 216(%rsp)
|
#define MMM 216(%rsp)
|
||||||
#defien NN 224(%rsp)
|
#define NN 224(%rsp)
|
||||||
#define AA 232(%rsp)
|
#define AA 232(%rsp)
|
||||||
#define LDAX 240(%rsp)
|
#define LDAX 240(%rsp)
|
||||||
|
|
||||||
|
@ -137,8 +138,10 @@
|
||||||
|
|
||||||
movq OLD_M, MMM
|
movq OLD_M, MMM
|
||||||
movq OLD_N, NN
|
movq OLD_N, NN
|
||||||
movq OLD_A, AA
|
movq OLD_A, X
|
||||||
movq OLD_LDA, LDAX
|
movq X, AA
|
||||||
|
movq OLD_LDA, X
|
||||||
|
movq X, LDAX
|
||||||
movq OLD_X, X
|
movq OLD_X, X
|
||||||
#else
|
#else
|
||||||
movq OLD_M, MMM
|
movq OLD_M, MMM
|
||||||
|
|
Loading…
Reference in New Issue