Specify register clobbers in mbedtls_aesni_crypt_ecb()

Signed-off-by: Solar Designer <solar@openwall.com>
diff --git a/library/aesni.c b/library/aesni.c
index 8e5bd55..69fe9e5 100644
--- a/library/aesni.c
+++ b/library/aesni.c
@@ -489,7 +489,7 @@
          "movdqu    %%xmm0, (%4)    \n\t" // export output
          :
          : "r" (ctx->nr), "r" (ctx->buf + ctx->rk_offset), "r" (mode), "r" (input), "r" (output)
-         : "memory", "cc", "xmm0", "xmm1");
+         : "memory", "cc", "xmm0", "xmm1", "0", "1");
 
 
     return 0;