Revision: 22829
Author: [email protected]
Date: Mon Aug 4 15:17:19 2014 UTC
Log: ARM64: fixed a couple of typos in TF
BUG=
[email protected]
Review URL: https://codereview.chromium.org/427713003
http://code.google.com/p/v8/source/detail?r=22829
Modified:
/branches/bleeding_edge/src/compiler/arm64/instruction-selector-arm64.cc
=======================================
---
/branches/bleeding_edge/src/compiler/arm64/instruction-selector-arm64.cc
Mon Aug 4 11:34:54 2014 UTC
+++
/branches/bleeding_edge/src/compiler/arm64/instruction-selector-arm64.cc
Mon Aug 4 15:17:19 2014 UTC
@@ -147,7 +147,7 @@
static void VisitBinop(InstructionSelector* selector, Node* node,
ArchOpcode opcode, ImmediateMode operand_mode) {
FlagsContinuation cont;
- VisitBinop(selector, node, opcode, operand_mode);
+ VisitBinop(selector, node, opcode, operand_mode, &cont);
}
@@ -247,7 +247,7 @@
if (g.CanBeImmediate(index, kLoadStoreImm)) {
Emit(opcode | AddressingModeField::encode(kMode_MRI), NULL,
g.UseRegister(base), g.UseImmediate(index), val);
- } else if (g.CanBeImmediate(index, kLoadStoreImm)) {
+ } else if (g.CanBeImmediate(base, kLoadStoreImm)) {
Emit(opcode | AddressingModeField::encode(kMode_MRI), NULL,
g.UseRegister(index), g.UseImmediate(base), val);
} else {
--
--
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.