Commit 5d5efc66 authored by bbudge's avatar bbudge Committed by Commit bot

[Turbofan] Fix IsSlot function in MoveOptimizer.

LOG=N
BUG=v8:4124

Review-Url: https://codereview.chromium.org/2328423002
Cr-Commit-Position: refs/heads/master@{#39389}
parent 5a9eac3a
...@@ -424,7 +424,7 @@ void MoveOptimizer::OptimizeMerge(InstructionBlock* block) { ...@@ -424,7 +424,7 @@ void MoveOptimizer::OptimizeMerge(InstructionBlock* block) {
namespace { namespace {
bool IsSlot(const InstructionOperand& op) { bool IsSlot(const InstructionOperand& op) {
return op.IsStackSlot() || op.IsDoubleStackSlot(); return op.IsStackSlot() || op.IsFPStackSlot();
} }
......
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