Browse Source

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

tags/v0.2.5^2
Zhang Xianyi 13 years ago
parent
commit
cea1a885b5
1 changed files with 11 additions and 0 deletions
  1. +11
    -0
      kernel/x86_64/dgemv_t.S

+ 11
- 0
kernel/x86_64/dgemv_t.S View File

@@ -74,6 +74,11 @@
#define STACK_Y 72 + STACKSIZE(%rsp)
#define STACK_INCY 80 + 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

@@ -134,6 +139,12 @@
movq OLD_A, A
movq OLD_LDA, LDA
movq OLD_X, X

movq M, MMM
movq N, NN
movq A, AA
movq LDA, LDAX

#else
movq OLD_M, MMM
movq OLD_N, NN


Loading…
Cancel
Save