diff options
Diffstat (limited to 'networking/tls_pstm_mul_comba.c')
-rw-r--r-- | networking/tls_pstm_mul_comba.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/tls_pstm_mul_comba.c b/networking/tls_pstm_mul_comba.c index ac4fcc3ef..af50358e5 100644 --- a/networking/tls_pstm_mul_comba.c +++ b/networking/tls_pstm_mul_comba.c | |||
@@ -85,7 +85,7 @@ asm( \ | |||
85 | "addl %%eax,%0 \n\t" \ | 85 | "addl %%eax,%0 \n\t" \ |
86 | "adcl %%edx,%1 \n\t" \ | 86 | "adcl %%edx,%1 \n\t" \ |
87 | "adcl $0,%2 \n\t" \ | 87 | "adcl $0,%2 \n\t" \ |
88 | :"=rm"(c0), "=rm"(c1), "=rm"(c2): "0"(c0), "1"(c1), "2"(c2), "m"(i), "m"(j) :"%eax","%edx","%cc"); | 88 | :"=rm"(c0), "=rm"(c1), "=rm"(c2): "0"(c0), "1"(c1), "2"(c2), "m"(i), "m"(j) :"%eax","%edx","cc"); |
89 | //bbox: ^^^ replaced "=r" with "=rm": %ebx is not available on shared build | 89 | //bbox: ^^^ replaced "=r" with "=rm": %ebx is not available on shared build |
90 | 90 | ||
91 | /******************************************************************************/ | 91 | /******************************************************************************/ |
@@ -155,7 +155,7 @@ asm( \ | |||
155 | " ADDS %0,%0,r0 \n\t" \ | 155 | " ADDS %0,%0,r0 \n\t" \ |
156 | " ADCS %1,%1,r1 \n\t" \ | 156 | " ADCS %1,%1,r1 \n\t" \ |
157 | " ADC %2,%2,#0 \n\t" \ | 157 | " ADC %2,%2,#0 \n\t" \ |
158 | :"=r"(c0), "=r"(c1), "=r"(c2) : "0"(c0), "1"(c1), "2"(c2), "r"(i), "r"(j) : "r0", "r1", "%cc"); | 158 | :"=r"(c0), "=r"(c1), "=r"(c2) : "0"(c0), "1"(c1), "2"(c2), "r"(i), "r"(j) : "r0", "r1", "cc"); |
159 | 159 | ||
160 | /******************************************************************************/ | 160 | /******************************************************************************/ |
161 | #elif defined(PSTM_MIPS) | 161 | #elif defined(PSTM_MIPS) |