Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

Unified Diff: src/compiler/move-optimizer.cc

Issue 2328423002: [Turbofan] Fix IsSlot function in MoveOptimizer. LOG=N BUG=v8:4124 (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/move-optimizer.cc
diff --git a/src/compiler/move-optimizer.cc b/src/compiler/move-optimizer.cc
index 482c254de168d2ba4beb9fba25d15ba6a72e7038..d87ece3849656efad88e4d174f0f28daaccaf335 100644
--- a/src/compiler/move-optimizer.cc
+++ b/src/compiler/move-optimizer.cc
@@ -424,7 +424,7 @@ void MoveOptimizer::OptimizeMerge(InstructionBlock* block) {
namespace {
bool IsSlot(const InstructionOperand& op) {
- return op.IsStackSlot() || op.IsDoubleStackSlot();
+ return op.IsStackSlot() || op.IsFPStackSlot();
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698