mirror of
https://git.freebsd.org/ports.git
synced 2025-05-05 16:07:38 -04:00
14 lines
518 B
C
14 lines
518 B
C
--- v8/src/maglev/x64/maglev-assembler-x64-inl.h.orig 2023-12-10 06:10:27 UTC
|
|
+++ v8/src/maglev/x64/maglev-assembler-x64-inl.h
|
|
@@ -232,7 +232,10 @@ void MaglevAssembler::PushReverse(T... vals) {
|
|
detail::PushAllHelper<T...>::PushReverse(this, vals...);
|
|
}
|
|
|
|
-inline void MaglevAssembler::BindJumpTarget(Label* label) { bind(label); }
|
|
+inline void MaglevAssembler::BindJumpTarget(Label* label) {
|
|
+ bind(label);
|
|
+ endbr64();
|
|
+}
|
|
|
|
inline void MaglevAssembler::BindBlock(BasicBlock* block) {
|
|
bind(block->label());
|