Index: src/objects.cc |
diff --git a/src/objects.cc b/src/objects.cc |
index 9e02c01385fa5e8be3c70cf6dbc6079847abea55..5bff37a654d2b31722f508f53722c364b0951ae9 100644 |
--- a/src/objects.cc |
+++ b/src/objects.cc |
@@ -13845,12 +13845,6 @@ |
void Code::Relocate(intptr_t delta) { |
- if (trap_handler::UseTrapHandler() && is_wasm_code()) { |
- const int index = trap_handler_index()->value(); |
- if (index >= 0) { |
- trap_handler::UpdateHandlerDataCodePointer(index, instruction_start()); |
- } |
- } |
for (RelocIterator it(this, RelocInfo::kApplyMask); !it.done(); it.next()) { |
it.rinfo()->apply(delta); |
} |