diff options
Diffstat (limited to 'src/lib/libcrypto/aes/aes_x86core.c')
-rw-r--r-- | src/lib/libcrypto/aes/aes_x86core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/aes/aes_x86core.c b/src/lib/libcrypto/aes/aes_x86core.c index 5cd215e5df..c7a2e0a9a6 100644 --- a/src/lib/libcrypto/aes/aes_x86core.c +++ b/src/lib/libcrypto/aes/aes_x86core.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: aes_x86core.c,v 1.6 2014/06/12 15:49:27 deraadt Exp $ */ | 1 | /* $OpenBSD: aes_x86core.c,v 1.7 2014/10/28 07:35:58 jsg Exp $ */ |
2 | /** | 2 | /** |
3 | * rijndael-alg-fst.c | 3 | * rijndael-alg-fst.c |
4 | * | 4 | * |
@@ -90,7 +90,7 @@ typedef unsigned long long u64; | |||
90 | #undef ROTATE | 90 | #undef ROTATE |
91 | #if defined(__GNUC__) && __GNUC__>=2 | 91 | #if defined(__GNUC__) && __GNUC__>=2 |
92 | # if defined(__i386) || defined(__i386__) || defined(__x86_64) || defined(__x86_64__) | 92 | # if defined(__i386) || defined(__i386__) || defined(__x86_64) || defined(__x86_64__) |
93 | # define ROTATE(a,n) ({ register unsigned int ret; \ | 93 | # define ROTATE(a,n) ({ unsigned int ret; \ |
94 | asm ( \ | 94 | asm ( \ |
95 | "roll %1,%0" \ | 95 | "roll %1,%0" \ |
96 | : "=r"(ret) \ | 96 | : "=r"(ret) \ |