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

Unified Diff: src/interpreter/bytecode-array-builder.cc

Issue 1979523002: [interpreter] Remove BytecodeArrayBuilder::Illegal(). (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Abort would be better :-D Created 4 years, 7 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/interpreter/bytecode-array-builder.cc
diff --git a/src/interpreter/bytecode-array-builder.cc b/src/interpreter/bytecode-array-builder.cc
index ecdac5597124682f26c6c9b2b42c3ef6f5b96fb6..ef26fd8f094e49ba5ae2c9d769da33c205bca6a0 100644
--- a/src/interpreter/bytecode-array-builder.cc
+++ b/src/interpreter/bytecode-array-builder.cc
@@ -766,11 +766,6 @@ BytecodeArrayBuilder& BytecodeArrayBuilder::Return() {
return *this;
}
-BytecodeArrayBuilder& BytecodeArrayBuilder::Illegal() {
- Output(Bytecode::kIllegal);
- return *this;
-}
-
BytecodeArrayBuilder& BytecodeArrayBuilder::Debugger() {
Output(Bytecode::kDebugger);
return *this;

Powered by Google App Engine
This is Rietveld 408576698