Index: Source/wtf/Assertions.h |
diff --git a/Source/wtf/Assertions.h b/Source/wtf/Assertions.h |
index 74e90515aa6006a5bcc5ed22864316fe42221bd4..edd2aa66d4d9e2fe16b024a82f6599f69d7f1083 100644 |
--- a/Source/wtf/Assertions.h |
+++ b/Source/wtf/Assertions.h |
@@ -144,11 +144,7 @@ using WTF::FrameToNameScope; |
*/ |
#ifndef CRASH |
#if COMPILER(MSVC) |
-#if COMPILER(CLANG) |
-#define CRASH() (__debugbreak(), __builtin_unreachable()) |
-#else |
-#define CRASH() __debugbreak() |
-#endif |
+#define CRASH() (__debugbreak(), IMMEDIATE_CRASH()) |
#else |
#define CRASH() \ |
(WTFReportBacktrace(), \ |