Commit 4e06f963 authored by sreten.kovacevic's avatar sreten.kovacevic Committed by Commit Bot

MIPS64: Fixed kGap value

Changed value of kGap constexpr from 32 to 128. Old value caused debugger/debug/debug-scopes test to fail

TEST=debugger/debug/debug-scopes

Bug: 
Change-Id: Ib805b84dce342b317b6cace3196fd1a9690e9d7a
Reviewed-on: https://chromium-review.googlesource.com/549928Reviewed-by: 's avatarIvica Bogosavljevic <ivica.bogosavljevic@imgtec.com>
Commit-Queue: Ivica Bogosavljevic <ivica.bogosavljevic@imgtec.com>
Cr-Commit-Position: refs/heads/master@{#46273}
parent f5b6886d
......@@ -2006,7 +2006,7 @@ class Assembler : public AssemblerBase {
// the generated instructions. This is so that multi-instruction sequences do
// not have to check for overflow. The same is true for writes of large
// relocation info entries.
static constexpr int kGap = 32;
static constexpr int kGap = 128;
// Repeated checking whether the trampoline pool should be emitted is rather
// expensive. By default we only check again once a number of instructions
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment