Reviewers: titzer,

Message:
Hello, Titzer,

PTAL.

Thanks.

Description:
Fix the compilation issue for turbofan unsupported backend which
is introduced by
https://chromium.googlesource.com/v8/v8/+/aed26c05a50b2a1257ef8accc67143825f2e1f60.

( [turbofan] Clean up and factor out branch generation logic.)

BUG=

Please review this at https://codereview.chromium.org/748673002/

Base URL: https://chromium.googlesource.com/v8/v8.git@master

Affected files (+6, -1 lines):
  M src/compiler/code-generator.cc


Index: src/compiler/code-generator.cc
diff --git a/src/compiler/code-generator.cc b/src/compiler/code-generator.cc
index f3257ec072c180e428da8d80adf5dc9274fc0f8e..6789f3a9fee75c5c1b6e1b08180e9eb390087f10 100644
--- a/src/compiler/code-generator.cc
+++ b/src/compiler/code-generator.cc
@@ -512,7 +512,7 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) {


 void CodeGenerator::AssembleArchBranch(Instruction* instr,
-                                       FlagsCondition condition) {
+                                       BranchInfo* branch) {
   UNIMPLEMENTED();
 }

@@ -523,6 +523,11 @@ void CodeGenerator::AssembleArchBoolean(Instruction* instr,
 }


+void CodeGenerator::AssembleArchJump(BasicBlock::RpoNumber target) {
+  UNIMPLEMENTED();
+}
+
+
 void CodeGenerator::AssembleDeoptimizerCall(int deoptimization_id) {
   UNIMPLEMENTED();
 }


--
--
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.

Reply via email to