summaryrefslogtreecommitdiffstats
path: root/mfbt/double-conversion/use-mozilla-assertions.patch
diff options
context:
space:
mode:
Diffstat (limited to 'mfbt/double-conversion/use-mozilla-assertions.patch')
-rw-r--r--mfbt/double-conversion/use-mozilla-assertions.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/mfbt/double-conversion/use-mozilla-assertions.patch b/mfbt/double-conversion/use-mozilla-assertions.patch
new file mode 100644
index 000000000..c98565f65
--- /dev/null
+++ b/mfbt/double-conversion/use-mozilla-assertions.patch
@@ -0,0 +1,23 @@
+diff --git a/mfbt/double-conversion/utils.h b/mfbt/double-conversion/utils.h
+--- a/mfbt/double-conversion/utils.h
++++ b/mfbt/double-conversion/utils.h
+@@ -31,15 +31,15 @@
+ #include <stdlib.h>
+ #include <string.h>
+
+-#include <assert.h>
++#include "mozilla/Assertions.h"
+ #ifndef ASSERT
+-#define ASSERT(condition) (assert(condition))
++#define ASSERT(condition) MOZ_ASSERT(condition)
+ #endif
+ #ifndef UNIMPLEMENTED
+-#define UNIMPLEMENTED() (abort())
++#define UNIMPLEMENTED() MOZ_CRASH()
+ #endif
+ #ifndef UNREACHABLE
+-#define UNREACHABLE() (abort())
++#define UNREACHABLE() MOZ_CRASH()
+ #endif
+
+ // Double operations detection based on target architecture.