summaryrefslogtreecommitdiff
path: root/src/hmac256.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hmac256.c')
-rw-r--r--src/hmac256.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/hmac256.c b/src/hmac256.c
index 34def769..2fda47bf 100644
--- a/src/hmac256.c
+++ b/src/hmac256.c
@@ -104,7 +104,8 @@ ror(u32 x, int n)
{
__asm__("rorl %%cl,%0"
:"=r" (x)
- :"0" (x),"c" (n));
+ :"0" (x),"c" (n)
+ :"cc");
return x;
}
#else