bn/asm/x86_64-gcc.cL make it indent-friendly.
Conflicts: crypto/bn/asm/x86_64-gcc.c Reviewed-by: Tim Hudson <tjh@openssl.org>
This commit is contained in:
parent
a988c1edfc
commit
15a9c36755
@ -70,7 +70,7 @@
|
|||||||
* "g"(0) let the compiler to decide where does it
|
* "g"(0) let the compiler to decide where does it
|
||||||
* want to keep the value of zero;
|
* want to keep the value of zero;
|
||||||
*/
|
*/
|
||||||
#define mul_add(r,a,word,carry) do { \
|
# define mul_add(r,a,word,carry) do { \
|
||||||
register BN_ULONG high,low; \
|
register BN_ULONG high,low; \
|
||||||
asm ("mulq %3" \
|
asm ("mulq %3" \
|
||||||
: "=a"(low),"=d"(high) \
|
: "=a"(low),"=d"(high) \
|
||||||
@ -87,7 +87,7 @@
|
|||||||
carry=high; \
|
carry=high; \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
#define mul(r,a,word,carry) do { \
|
# define mul(r,a,word,carry) do { \
|
||||||
register BN_ULONG high,low; \
|
register BN_ULONG high,low; \
|
||||||
asm ("mulq %3" \
|
asm ("mulq %3" \
|
||||||
: "=a"(low),"=d"(high) \
|
: "=a"(low),"=d"(high) \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user