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

Unified Diff: src/compiler/s390/code-generator-s390.cc

Issue 1895603002: [esnext] prototype runtime implementation for async functions (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@AsyncFunction
Patch Set: properly rebase Created 4 years, 7 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
Index: src/compiler/s390/code-generator-s390.cc
diff --git a/src/compiler/s390/code-generator-s390.cc b/src/compiler/s390/code-generator-s390.cc
index ce51b5a0230e82790f746ab0c2ea29fe4aef612f..f234279b0a85715c4dd11bf654277767883ce010 100644
--- a/src/compiler/s390/code-generator-s390.cc
+++ b/src/compiler/s390/code-generator-s390.cc
@@ -1315,11 +1315,9 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleArchInstruction(
int num_slots = i.InputInt32(1);
__ lay(sp, MemOperand(sp, -num_slots * kPointerSize));
if (instr->InputAt(0)->IsDoubleRegister()) {
- __ StoreDouble(i.InputDoubleRegister(0),
- MemOperand(sp));
+ __ StoreDouble(i.InputDoubleRegister(0), MemOperand(sp));
Dan Ehrenberg 2016/05/04 22:52:36 Nit: Maybe back out this style change now that you
} else {
- __ StoreP(i.InputRegister(0),
- MemOperand(sp));
+ __ StoreP(i.InputRegister(0), MemOperand(sp));
}
break;
}

Powered by Google App Engine
This is Rietveld 408576698