From: Andy Polyakov Date: Sun, 20 May 2007 07:14:14 +0000 (+0000) Subject: Padlock engine fails to compile with -O0 -fPIC [from HEAD]. X-Git-Tag: OpenSSL_0_9_8f~106 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d4461205279dc6e8f75b557e6c99268bda88bc16;p=openssl Padlock engine fails to compile with -O0 -fPIC [from HEAD]. --- diff --git a/crypto/engine/eng_padlock.c b/crypto/engine/eng_padlock.c index e1d66eac58..8531bde1db 100644 --- a/crypto/engine/eng_padlock.c +++ b/crypto/engine/eng_padlock.c @@ -436,7 +436,7 @@ 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), "m"(*cdata) \ + : "0"(cdata), "1"(cnt), "2"(out), "3"(inp) \ : "edx", "cc", "memory"); \ return iv; \ }