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:44:42 +0000
commit15a9c3675551b74d583072fa7de05c473e5fe9df (patch)
tree17212eafbcdc9976ad01197b0525abdaad37d61b
parenta988c1edfc7ea1780233d3fc26fd17fe136dd7b5 (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 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) \
1.2.3 (git 2.25.1) at 2024-07-08 05:24:16 +0000