summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJerome Gaillard <jgaillard@google.com>2022-01-20 13:22:43 +0000
committerCherrypicker Worker <android-build-cherrypicker-worker@google.com>2023-02-21 12:02:39 +0000
commit679499cc9b92cfb0ae1dccbfd7e97ce719d23576 (patch)
tree0c90eb3c77656b536cf21a9c4858dd6a035f597e
parent9e82d305b938c9aefd2e9ebc0b20b626d89c49f8 (diff)
downloaddng_sdk-679499cc9b92cfb0ae1dccbfd7e97ce719d23576.tar.gz
On mac, long and long long are of the same size, but int64_t is specifically defined as a long long. Bug: N/A Change-Id: Ib25cec45621c4eefc703de5f5e43b16dc0a010a3 Test: on a mac, lunch sdk & m libdng_sdk (cherry picked from commit 1e1c945266845332b99d04a375729eee99826e22) Merged-In: Ib25cec45621c4eefc703de5f5e43b16dc0a010a3
-rw-r--r--source/dng_safe_arithmetic.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/dng_safe_arithmetic.h b/source/dng_safe_arithmetic.h
index 66c5ebf..268c918 100644
--- a/source/dng_safe_arithmetic.h
+++ b/source/dng_safe_arithmetic.h
@@ -113,7 +113,7 @@ std::int64_t SafeInt64MultSlow(std::int64_t arg1, std::int64_t arg2);
#if __has_builtin(__builtin_smull_overflow)
inline std::int64_t SafeInt64MultByClang(std::int64_t arg1, std::int64_t arg2) {
std::int64_t result;
-#if LONG_MAX == INT64_MAX
+#if (LONG_MAX == INT64_MAX) && !defined(__APPLE__)
if (__builtin_smull_overflow(arg1, arg2, &result)) {
#else
if (__builtin_smulll_overflow(arg1, arg2, &result)) {