Mark y as modified in x86 asm for mbedtls_ct_uint_lt

Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
diff --git a/library/constant_time_impl.h b/library/constant_time_impl.h
index 70e8b9a..4290e60 100644
--- a/library/constant_time_impl.h
+++ b/library/constant_time_impl.h
@@ -366,9 +366,9 @@
                   "sar $31, %[x]                                  \n\t"
                   :
                   [s] "=&b" (s),
-                  [x] "+&a" (x)
+                  [x] "+&a" (x),
+                  [y] "+&c" (y)
                   :
-                  [y] "c" (y)
                   :
                   );
     return (mbedtls_ct_condition_t) x;