Index: src/compiler.cc |
diff --git a/src/compiler.cc b/src/compiler.cc |
index 055777af77db2118a08e06d68cb7e798535dc4e6..ad521191bf0bef0d2cb5fff1b8fbe359ba316829 100644 |
--- a/src/compiler.cc |
+++ b/src/compiler.cc |
@@ -200,10 +200,9 @@ StackFrame::Type CompilationInfo::GetOutputStackFrameType() const { |
case Code::BYTECODE_HANDLER: |
case Code::HANDLER: |
case Code::BUILTIN: |
- case Code::LOAD_IC: |
- case Code::KEYED_LOAD_IC: |
- case Code::STORE_IC: |
- case Code::KEYED_STORE_IC: |
+#define CASE_KIND(kind) case Code::kind: |
+ IC_KIND_LIST(CASE_KIND) |
+#undef CASE_KIND |
return StackFrame::STUB; |
case Code::WASM_FUNCTION: |
return StackFrame::WASM; |