summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2015-01-21 11:54:03 +0100
committerMatt Caswell <matt@openssl.org>2015-01-22 09:51:32 +0000
commitf6e4701f2a448bc341b869faa70197229d574e6e (patch)
tree64e8c9caa2c57ce390fb2ef9ea94633b3b3adb2b
parent86183798f359bc7d12316e95f748894aa289c888 (diff)
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>
-rw-r--r--crypto/bn/asm/x86_64-gcc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/bn/asm/x86_64-gcc.c b/crypto/bn/asm/x86_64-gcc.c
index e65ddef20a..dba64b25a4 100644
--- a/crypto/bn/asm/x86_64-gcc.c
+++ b/crypto/bn/asm/x86_64-gcc.c
@@ -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) \