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

Unified Diff: src/PNaClTranslator.cpp

Issue 1435363002: Merge fixed alloca stack adjustments into the prolog (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: One more code review fix Created 5 years, 1 month 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/PNaClTranslator.cpp
diff --git a/src/PNaClTranslator.cpp b/src/PNaClTranslator.cpp
index 755971d3df5c898ec88d1addedd5ff8cbd2ab892..cff46e7b7f687c013f93ba08e135badb3171dd35 100644
--- a/src/PNaClTranslator.cpp
+++ b/src/PNaClTranslator.cpp
@@ -2626,7 +2626,7 @@ void FunctionParser::ProcessRecord() {
return;
}
CurrentNode->appendInst(Ice::InstAlloca::create(
- Func.get(), ByteCount, Alignment, getNextInstVar(PtrTy)));
+ Func.get(), getNextInstVar(PtrTy), ByteCount, Alignment));
return;
}
case naclbitc::FUNC_CODE_INST_LOAD: {

Powered by Google App Engine
This is Rietveld 408576698