summaryrefslogtreecommitdiff
path: root/chromium/v8/src/compiler/operator-properties.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/v8/src/compiler/operator-properties.cc')
-rw-r--r--chromium/v8/src/compiler/operator-properties.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/v8/src/compiler/operator-properties.cc b/chromium/v8/src/compiler/operator-properties.cc
index a4892cdb2a2..bf0f724a993 100644
--- a/chromium/v8/src/compiler/operator-properties.cc
+++ b/chromium/v8/src/compiler/operator-properties.cc
@@ -24,7 +24,7 @@ bool OperatorProperties::NeedsExactContext(const Operator* op) {
DCHECK(HasContextInput(op));
IrOpcode::Value const opcode = static_cast<IrOpcode::Value>(op->opcode());
switch (opcode) {
-#define CASE(Name) case IrOpcode::k##Name:
+#define CASE(Name, ...) case IrOpcode::k##Name:
// Binary/unary operators, calls and constructor calls only
// need the context to generate exceptions or lookup fields
// on the native context, so passing any context is fine.