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

Unified Diff: test/unittests/compiler/instruction-selector-unittest.cc

Issue 1375253002: [WIP][turbofan] Instruction scheduler for Turbofan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 3 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
Index: test/unittests/compiler/instruction-selector-unittest.cc
diff --git a/test/unittests/compiler/instruction-selector-unittest.cc b/test/unittests/compiler/instruction-selector-unittest.cc
index e14382e914a214378c81a5f52a3886ba4ee3f798..41d2a35478f90ba75f77f0f410abca89864f12f6 100644
--- a/test/unittests/compiler/instruction-selector-unittest.cc
+++ b/test/unittests/compiler/instruction-selector-unittest.cc
@@ -62,8 +62,8 @@ InstructionSelectorTest::Stream InstructionSelectorTest::StreamBuilder::Build(
if (instr->opcode() < 0) continue;
if (mode == kTargetInstructions) {
switch (instr->arch_opcode()) {
-#define CASE(Name) \
- case k##Name: \
+#define CASE(Name, Flags) \
+ case k##Name: \
break;
TARGET_ARCH_OPCODE_LIST(CASE)
#undef CASE

Powered by Google App Engine
This is Rietveld 408576698