We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
STORE/LOAD32
1 parent 1937f41 commit 19c6e79Copy full SHA for 19c6e79
1 file changed
src/headers/tomcrypt_macros.h
@@ -74,13 +74,13 @@ asm __volatile__ ( \
74
"bswapl %0 \n\t" \
75
"movl %0,(%1)\n\t" \
76
77
- ::"r"(x), "r"(y));
+ ::"r"(x), "r"(y): "memory");
78
79
#define LOAD32H(x, y) \
80
asm __volatile__ ( \
81
"movl (%1),%0\n\t" \
82
"bswapl %0\n\t" \
83
- :"=r"(x): "r"(y));
+ :"=r"(x): "r"(y): "memory");
84
85
#else
86
0 commit comments