Revision: 25163
Author: [email protected]
Date: Wed Nov 5 15:09:15 2014 UTC
Log: fix assert in arm64 gap resolver
BUG=
[email protected]
Review URL: https://codereview.chromium.org/708473002
https://code.google.com/p/v8/source/detail?r=25163
Modified:
/branches/bleeding_edge/src/arm64/delayed-masm-arm64.cc
=======================================
--- /branches/bleeding_edge/src/arm64/delayed-masm-arm64.cc Mon Aug 4
11:34:54 2014 UTC
+++ /branches/bleeding_edge/src/arm64/delayed-masm-arm64.cc Wed Nov 5
15:09:15 2014 UTC
@@ -16,8 +16,8 @@
void DelayedMasm::StackSlotMove(LOperand* src, LOperand* dst) {
- DCHECK(src->IsStackSlot());
- DCHECK(dst->IsStackSlot());
+ DCHECK((src->IsStackSlot() && dst->IsStackSlot()) ||
+ (src->IsDoubleStackSlot() && dst->IsDoubleStackSlot()));
MemOperand src_operand = cgen_->ToMemOperand(src);
MemOperand dst_operand = cgen_->ToMemOperand(dst);
if (pending_ == kStackSlotMove) {
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.