projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
53d7efe
)
Gcc over-optimizes PadLock AES CFB codepath, tell it not to.
author
Andy Polyakov
<appro@openssl.org>
Thu, 19 Oct 2006 20:55:05 +0000
(20:55 +0000)
committer
Andy Polyakov
<appro@openssl.org>
Thu, 19 Oct 2006 20:55:05 +0000
(20:55 +0000)
crypto/engine/eng_padlock.c
patch
|
blob
|
history
diff --git
a/crypto/engine/eng_padlock.c
b/crypto/engine/eng_padlock.c
index 8d92af6f8bd247d58b8c2169dbdbe737fb44a14a..e1d66eac58adcba26a55637eca8d343f89acc02d 100644
(file)
--- a/
crypto/engine/eng_padlock.c
+++ b/
crypto/engine/eng_padlock.c
@@
-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; \
}