From: Andy Polyakov Date: Wed, 21 Jan 2015 10:54:03 +0000 (+0100) Subject: bn/asm/x86_64-gcc.cL make it indent-friendly. X-Git-Tag: OpenSSL_1_0_1-post-reformat~19 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d9bd6d1f3dacfab11815f26afbddbf868b28b9ee;p=oweals%2Fopenssl.git bn/asm/x86_64-gcc.cL make it indent-friendly. Conflicts: crypto/bn/asm/x86_64-gcc.c Reviewed-by: Tim Hudson --- diff --git a/crypto/bn/asm/x86_64-gcc.c b/crypto/bn/asm/x86_64-gcc.c index 6e380d5566..7fb9db2d8a 100644 --- a/crypto/bn/asm/x86_64-gcc.c +++ b/crypto/bn/asm/x86_64-gcc.c @@ -70,7 +70,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) \ @@ -87,7 +87,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) \