diff options
author | Andy Polyakov <appro@openssl.org> | 2011-05-25 12:02:20 +0200 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2011-05-25 12:02:20 +0200 |
commit | 87f6b97e8906491275cc7d3db1992337e7847aac (patch) | |
tree | 1305c510104237febb5cd8d6f4f3ada7dcb00eab /engines | |
parent | rc4-586.pl: optimize unused code path. (diff) | |
download | openssl-87f6b97e8906491275cc7d3db1992337e7847aac.tar.xz openssl-87f6b97e8906491275cc7d3db1992337e7847aac.zip |
e_padlock.c: fix typo.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/e_padlock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/e_padlock.c b/engines/e_padlock.c index f0142798f4..271253dada 100644 --- a/engines/e_padlock.c +++ b/engines/e_padlock.c @@ -540,7 +540,7 @@ static inline void *name(size_t cnt, \ " leaq 16(%0),%%rdx\n" \ " leaq 32(%0),%%rbx\n" \ rep_xcrypt "\n" \ - " movq %%rbx,%4" \ + " movq %4,%%rbx" \ : "=a"(iv), "=c"(cnt), "=D"(out), "=S"(inp), "=&r"(scratch) \ : "0"(cdata), "1"(cnt), "2"(out), "3"(inp) \ : "rdx", "cc", "memory"); \ |