Commit 9754c385 authored by Benedikt Meurer's avatar Benedikt Meurer

[turbofan] Always align loop headers at 16-byte boundaries.

R=svenpanne@chromium.org

Review URL: https://codereview.chromium.org/811713002

Cr-Commit-Position: refs/heads/master@{#25836}
parent 1ee700c4
......@@ -57,6 +57,8 @@ Handle<Code> CodeGenerator::GenerateCode() {
if (block->IsDeferred() == (deferred == 0)) {
continue;
}
// Align loop headers on 16-byte boundaries.
if (block->IsLoopHeader()) masm()->Align(16);
// Bind a label for a block.
current_block_ = block->rpo_number();
if (FLAG_code_comments) {
......
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