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

Unified Diff: src/a64/macro-assembler-a64.cc

Issue 167123004: A64: Update DoAllocate() to use a W register for the size (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
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
« src/a64/lithium-codegen-a64.cc ('K') | « src/a64/lithium-codegen-a64.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/a64/macro-assembler-a64.cc
diff --git a/src/a64/macro-assembler-a64.cc b/src/a64/macro-assembler-a64.cc
index 1e8da54314a5fa2434071cb051a8281126f38301..e3561a160e7906e16aeb71357cb8014a562eb952 100644
--- a/src/a64/macro-assembler-a64.cc
+++ b/src/a64/macro-assembler-a64.cc
@@ -3071,7 +3071,7 @@ void MacroAssembler::Allocate(Register object_size,
}
ASSERT(!AreAliased(object_size, result, scratch1, scratch2, Tmp0(), Tmp1()));
- ASSERT(object_size.Is64Bits() && result.Is64Bits() && scratch1.Is64Bits() &&
+ ASSERT(result.Is64Bits() && scratch1.Is64Bits() &&
scratch2.Is64Bits() && Tmp0().Is64Bits() && Tmp1().Is64Bits());
// Check relative positions of allocation top and limit addresses.
« src/a64/lithium-codegen-a64.cc ('K') | « src/a64/lithium-codegen-a64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698