| Index: third_party/sqlite/amalgamation/sqlite3.c
|
| diff --git a/third_party/sqlite/amalgamation/sqlite3.c b/third_party/sqlite/amalgamation/sqlite3.c
|
| index e5fc3c64694db0f74f5070d9accf0c2aea152d5c..b849c15d32fe634b15faae851d4d518cdc395166 100644
|
| --- a/third_party/sqlite/amalgamation/sqlite3.c
|
| +++ b/third_party/sqlite/amalgamation/sqlite3.c
|
| @@ -28893,13 +28893,12 @@ SQLITE_PRIVATE int sqlite3SubInt64(i64 *pA, i64 iB){
|
| #endif
|
| }
|
| SQLITE_PRIVATE int sqlite3MulInt64(i64 *pA, i64 iB){
|
| -/* TODO(shess): Chromium Android clang generates a link error:
|
| +/* TODO(shess): Removing clang support because on many platforms it generates a
|
| +** link error for this intrinsic:
|
| ** undefined reference to '__mulodi4'
|
| -** UPDATE(shess): Also, apparently, 32-bit Linux clang.
|
| +** http://crbug.com/701524
|
| */
|
| -#if GCC_VERSION>=5004000 || \
|
| - (CLANG_VERSION>=4000000 && !defined(__ANDROID__) && \
|
| - (!defined(__linux__) || !defined(__i386__)))
|
| +#if GCC_VERSION>=5004000
|
| return __builtin_mul_overflow(*pA, iB, pA);
|
| #else
|
| i64 iA = *pA;
|
|
|