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

Unified Diff: src/compiler/instruction.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: src/compiler/instruction.cc
diff --git a/src/compiler/instruction.cc b/src/compiler/instruction.cc
index 0fbb94979e41522d4df8d2472372559f4dab5160..5f109f348e7620bb96a59c376c15def452d5aa73 100644
--- a/src/compiler/instruction.cc
+++ b/src/compiler/instruction.cc
@@ -286,8 +286,8 @@ std::ostream& operator<<(std::ostream& os, const ReferenceMap& pm) {
std::ostream& operator<<(std::ostream& os, const ArchOpcode& ao) {
switch (ao) {
-#define CASE(Name) \
- case k##Name: \
+#define CASE(Name, Flags) \
+ case k##Name: \
return os << #Name;
ARCH_OPCODE_LIST(CASE)
#undef CASE

Powered by Google App Engine
This is Rietveld 408576698