Index: include/v8config.h |
diff --git a/include/v8config.h b/include/v8config.h |
index a8b54c18d83c83b6ccb7702d570799dabdd9b7f0..24b0e5ff3ef64d7ff11f30d495ff7953c0bc4f61 100644 |
--- a/include/v8config.h |
+++ b/include/v8config.h |
@@ -183,6 +183,7 @@ |
// V8_HAS_BUILTIN_POPCOUNT - __builtin_popcount() supported |
// V8_HAS_BUILTIN_SADD_OVERFLOW - __builtin_sadd_overflow() supported |
// V8_HAS_BUILTIN_SSUB_OVERFLOW - __builtin_ssub_overflow() supported |
+// V8_HAS_BUILTIN_UADD_OVERFLOW - __builtin_uadd_overflow() supported |
// V8_HAS_DECLSPEC_ALIGN - __declspec(align(n)) supported |
// V8_HAS_DECLSPEC_DEPRECATED - __declspec(deprecated) supported |
// V8_HAS_DECLSPEC_NOINLINE - __declspec(noinline) supported |
@@ -221,6 +222,7 @@ |
# define V8_HAS_BUILTIN_POPCOUNT (__has_builtin(__builtin_popcount)) |
# define V8_HAS_BUILTIN_SADD_OVERFLOW (__has_builtin(__builtin_sadd_overflow)) |
# define V8_HAS_BUILTIN_SSUB_OVERFLOW (__has_builtin(__builtin_ssub_overflow)) |
+# define V8_HAS_BUILTIN_UADD_OVERFLOW (__has_builtin(__builtin_uadd_overflow)) |
# define V8_HAS_CXX11_ALIGNAS (__has_feature(cxx_alignas)) |
# define V8_HAS_CXX11_STATIC_ASSERT (__has_feature(cxx_static_assert)) |