Revision: 25072
Author: [email protected]
Date: Mon Nov 3 13:41:56 2014 UTC
Log: build fix after r25071
[email protected]
BUG=
Review URL: https://codereview.chromium.org/684523003
https://code.google.com/p/v8/source/detail?r=25072
Modified:
/branches/bleeding_edge/test/cctest/compiler/test-codegen-deopt.cc
/branches/bleeding_edge/test/cctest/compiler/test-instruction.cc
=======================================
--- /branches/bleeding_edge/test/cctest/compiler/test-codegen-deopt.cc Mon
Nov 3 13:26:46 2014 UTC
+++ /branches/bleeding_edge/test/cctest/compiler/test-codegen-deopt.cc Mon
Nov 3 13:41:56 2014 UTC
@@ -31,6 +31,7 @@
#if V8_TURBOFAN_TARGET
typedef RawMachineAssembler::Label MLabel;
+typedef v8::internal::compiler::InstructionSequence TestInstrSeq;
static Handle<JSFunction> NewFunction(const char* source) {
return v8::Utils::OpenHandle(
@@ -66,10 +67,9 @@
// Initialize the codegen and generate code.
Linkage* linkage = new (scope_->main_zone()) Linkage(info.zone(),
&info);
InstructionBlocks* instruction_blocks =
- InstructionSequence::InstructionBlocksFor(scope_->main_zone(),
- schedule);
- code = new
v8::internal::compiler::InstructionSequence(scope_->main_zone(),
-
instruction_blocks);
+ TestInstrSeq::InstructionBlocksFor(scope_->main_zone(), schedule);
+ code = new TestInstrSeq::InstructionSequence(scope_->main_zone(),
+ instruction_blocks);
SourcePositionTable source_positions(graph);
InstructionSelector selector(scope_->main_zone(), graph, linkage, code,
schedule, &source_positions);
@@ -107,7 +107,7 @@
CompilationInfo info;
BailoutId bailout_id;
Handle<Code> result_code;
- v8::internal::compiler::InstructionSequence* code;
+ TestInstrSeq* code;
Graph* graph;
};
=======================================
--- /branches/bleeding_edge/test/cctest/compiler/test-instruction.cc Mon
Nov 3 13:26:46 2014 UTC
+++ /branches/bleeding_edge/test/cctest/compiler/test-instruction.cc Mon
Nov 3 13:41:56 2014 UTC
@@ -56,7 +56,7 @@
DCHECK(schedule.rpo_order()->size() > 0);
}
InstructionBlocks* instruction_blocks =
- InstructionSequence::InstructionBlocksFor(main_zone(), &schedule);
+ TestInstrSeq::InstructionBlocksFor(main_zone(), &schedule);
code = new TestInstrSeq(main_zone(), instruction_blocks);
}
--
--
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.