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 |