summaryrefslogtreecommitdiff
path: root/storage/tokudb/ft-index/src/tests/xa-txn-discard-abort.cc
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2015-05-04 08:32:05 +0200
committerSergei Golubchik <serg@mariadb.org>2015-05-04 08:32:27 +0200
commitae18a28500974351cf42fa3cac67c83e0647d510 (patch)
tree37603a1c1a475554a2cff6eb698cb0bec73dd617 /storage/tokudb/ft-index/src/tests/xa-txn-discard-abort.cc
parent298368693c43e4ef878b3b01a1ae234cdf94d905 (diff)
downloadmariadb-git-ae18a28500974351cf42fa3cac67c83e0647d510.tar.gz
MDEV-7973 bigint fail with gcc 5.0
-LONGLONG_MIN is the undefined behavior in C. longlong2decimal() used to do this: int longlong2decimal(longlong from, decimal_t *to) { if ((to->sign= from < 0)) return ull2dec(-from, to); return ull2dec(from, to); and later in ull2dec() (DIG_BASE is 1000000000): static int ull2dec(ulonglong from, decimal_t *to) { for (intg1=1; from >= DIG_BASE; intg1++, from/=DIG_BASE) {} this breaks in gcc-5 at -O3. Here ull2dec is inlined into longlong2decimal. And gcc-5 believes that 'from' in the inlined ull2dec is always a positive integer (indeed, if it was negative, then -from was used instead). So gcc-5 uses *signed* comparison with DIG_BASE. Fix: make a special case for LONGLONG_MIN, don't negate it
Diffstat (limited to 'storage/tokudb/ft-index/src/tests/xa-txn-discard-abort.cc')
0 files changed, 0 insertions, 0 deletions