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

Unified Diff: src/builtins.cc

Issue 149403003: A64: Synchronize with r19234. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 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 | « src/bootstrapper.cc ('k') | src/char-predicates.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/builtins.cc
diff --git a/src/builtins.cc b/src/builtins.cc
index 717e01649338a880a3c337f12cfbb66050be5c51..cf5e0e94159792b188dd04eead689afbd72a039d 100644
--- a/src/builtins.cc
+++ b/src/builtins.cc
@@ -1321,7 +1321,8 @@ static void Generate_LoadIC_Normal(MacroAssembler* masm) {
static void Generate_LoadIC_Getter_ForDeopt(MacroAssembler* masm) {
LoadStubCompiler::GenerateLoadViaGetter(
- masm, LoadStubCompiler::registers()[0], Handle<JSFunction>());
+ masm, Handle<HeapType>::null(),
+ LoadStubCompiler::registers()[0], Handle<JSFunction>());
}
@@ -1386,7 +1387,8 @@ static void Generate_StoreIC_Normal(MacroAssembler* masm) {
static void Generate_StoreIC_Setter_ForDeopt(MacroAssembler* masm) {
- StoreStubCompiler::GenerateStoreViaSetter(masm, Handle<JSFunction>());
+ StoreStubCompiler::GenerateStoreViaSetter(
+ masm, Handle<HeapType>::null(), Handle<JSFunction>());
}
« no previous file with comments | « src/bootstrapper.cc ('k') | src/char-predicates.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698