summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--newmoon/nm-gcc-11.patch14
1 files changed, 7 insertions, 7 deletions
diff --git a/newmoon/nm-gcc-11.patch b/newmoon/nm-gcc-11.patch
index d460928..9ab7f75 100644
--- a/newmoon/nm-gcc-11.patch
+++ b/newmoon/nm-gcc-11.patch
@@ -743,22 +743,22 @@ Message:
#include "jit/JitCompartment.h"
#include "js/MemoryMetrics.h"
---- a/js/src/regexp/regexp-bytecode-peephole.cc
-+++ b/js/src/regexp/regexp-bytecode-peephole.cc
+--- a/js/src/new-regexp/regexp-bytecode-peephole.cc
++++ b/js/src/new-regexp/regexp-bytecode-peephole.cc
@@ -2,8 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
--#include "regexp/regexp-bytecode-peephole.h"
+-#include "new-regexp/regexp-bytecode-peephole.h"
+#include <limits>
-+#include "regexp/regexp-bytecode-peephole.h"
- #include "regexp/regexp-bytecodes.h"
++#include "new-regexp/regexp-bytecode-peephole.h"
+ #include "new-regexp/regexp-bytecodes.h"
namespace v8 {
---- a/js/src/regexp/util/vector.h
-+++ b/js/src/regexp/util/vector.h
+--- a/js/src/new-regexp/util/vector.h
++++ b/js/src/new-regexp/util/vector.h
@@ -5,6 +5,7 @@
#ifndef V8_UTIL_VECTOR_H_
#define V8_UTIL_VECTOR_H_
bgstack15