bn/asm/x86_64-gcc.cL make it indent-friendly.
authorAndy Polyakov <appro@openssl.org>
Wed, 21 Jan 2015 10:54:03 +0000 (11:54 +0100)
committerMatt Caswell <matt@openssl.org>
Thu, 22 Jan 2015 09:44:42 +0000 (09:44 +0000)
Conflicts:
crypto/bn/asm/x86_64-gcc.c

Reviewed-by: Tim Hudson <tjh@openssl.org>
crypto/bn/asm/x86_64-gcc.c

index 6e380d5566f69559df1473cb6ab1e9f8368b1d12..7fb9db2d8aa93df0016e8207ea5ace631c8f981f 100644 (file)
@@ -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)  \