build: try removing V8 DCHECK patch (#38341)

This commit is contained in:
Shelley Vohr 2023-05-18 20:53:15 +02:00 committed by GitHub
parent b35ec4a23c
commit 642950a00e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 21 deletions

View file

@ -1,5 +1,4 @@
build_gn.patch
dcheck.patch
export_symbols_needed_for_windows_build.patch
do_not_export_private_v8_symbols_on_windows.patch
fix_build_deprecated_attribute_for_older_msvc_versions.patch

View file

@ -1,20 +0,0 @@
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Ales Pergl <alpergl@microsoft.com>
Date: Mon, 22 Oct 2018 10:47:12 -0700
Subject: dcheck.patch
https://github.com/auchenberg/volkswagen
diff --git a/src/api/api.cc b/src/api/api.cc
index b7c99b9f0cc38e931ee67fca182ef32274f53787..d44b7acc0b9857843f08feaebfd1cdca3569029e 100644
--- a/src/api/api.cc
+++ b/src/api/api.cc
@@ -9915,7 +9915,7 @@ void Isolate::SetPromiseRejectCallback(PromiseRejectCallback callback) {
}
void Isolate::PerformMicrotaskCheckpoint() {
- DCHECK_NE(MicrotasksPolicy::kScoped, GetMicrotasksPolicy());
+ // DCHECK_NE(MicrotasksPolicy::kScoped, GetMicrotasksPolicy());
i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(this);
i_isolate->default_microtask_queue()->PerformCheckpoint(this);
}