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:
Andy Polyakov
2015-01-21 11:54:03 +01:00
committed by Matt Caswell
parent 86183798f3
commit f6e4701f2a

View File

@@ -66,7 +66,7 @@
* "g"(0) let the compiler to decide where does it
* 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; \
asm ("mulq %3" \
: "=a"(low),"=d"(high) \
@@ -83,7 +83,7 @@
carry=high; \
} while (0)
#define mul(r,a,word,carry) do { \
# define mul(r,a,word,carry) do { \
register BN_ULONG high,low; \
asm ("mulq %3" \
: "=a"(low),"=d"(high) \