diff options
author | Sergei Golubchik <sergii@pisem.net> | 2014-10-02 11:58:24 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2014-10-02 11:58:24 +0200 |
commit | 384999f3e8707bcc249bf9fd56828b8ec3e839bf (patch) | |
tree | 27daebd0afb3744329f3ea785333d2247c489fb5 /extra | |
parent | e90851008b9c8a84b642fc487eea09eecfbcec2c (diff) | |
download | mariadb-git-384999f3e8707bcc249bf9fd56828b8ec3e839bf.tar.gz |
MDEV-6528 review debian patches for mysql
and apply whatever was reasonable
Diffstat (limited to 'extra')
-rw-r--r-- | extra/yassl/taocrypt/src/integer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/yassl/taocrypt/src/integer.cpp b/extra/yassl/taocrypt/src/integer.cpp index 4e61c19e648..f268c8e4d51 100644 --- a/extra/yassl/taocrypt/src/integer.cpp +++ b/extra/yassl/taocrypt/src/integer.cpp @@ -194,7 +194,7 @@ DWord() {} "a" (a), "rm" (b) : "cc"); #elif defined(__mips64) - __asm__("dmultu %2,%3" : "=h" (r.halfs_.high), "=l" (r.halfs_.low) + __asm__("dmultu %2,%3" : "=d" (r.halfs_.high), "=l" (r.halfs_.low) : "r" (a), "r" (b)); #elif defined(_M_IX86) |