mirror of
https://github.com/openssl/openssl.git
synced 2025-01-30 14:01:55 +08:00
Gcc over-optimizes PadLock AES CFB codepath, tell it not to.
This commit is contained in:
parent
53d7efea76
commit
3634d7e97a
@ -436,8 +436,8 @@ static inline void *name(size_t cnt, \
|
||||
rep_xcrypt "\n" \
|
||||
" popl %%ebx" \
|
||||
: "=a"(iv), "=c"(cnt), "=D"(out), "=S"(inp) \
|
||||
: "0"(cdata), "1"(cnt), "2"(out), "3"(inp) \
|
||||
: "edx", "cc"); \
|
||||
: "0"(cdata), "1"(cnt), "2"(out), "3"(inp), "m"(*cdata) \
|
||||
: "edx", "cc", "memory"); \
|
||||
return iv; \
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user