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

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

Issue 1738653003: [interpreter] Remove wholesale skipping of strong mode tests. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_strong-remove-count
Patch Set: Remove more skips. Created 4 years, 10 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
« no previous file with comments | « no previous file | test/cctest/cctest.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/interpreter/bytecode-array-builder.cc
diff --git a/src/interpreter/bytecode-array-builder.cc b/src/interpreter/bytecode-array-builder.cc
index 5d383254a0562fd6642b344fa76c393b9f57d8c1..5bdf4ab24ba097ed5b017a661e2869a5d055c1df 100644
--- a/src/interpreter/bytecode-array-builder.cc
+++ b/src/interpreter/bytecode-array-builder.cc
@@ -1468,9 +1468,8 @@ Bytecode BytecodeArrayBuilder::BytecodeForStoreIC(LanguageMode language_mode) {
case SLOPPY:
return Bytecode::kStoreICSloppy;
case STRICT:
- return Bytecode::kStoreICStrict;
case STRONG:
- UNIMPLEMENTED();
+ return Bytecode::kStoreICStrict;
default:
UNREACHABLE();
}
@@ -1485,9 +1484,8 @@ Bytecode BytecodeArrayBuilder::BytecodeForKeyedStoreIC(
case SLOPPY:
return Bytecode::kKeyedStoreICSloppy;
case STRICT:
- return Bytecode::kKeyedStoreICStrict;
case STRONG:
- UNIMPLEMENTED();
+ return Bytecode::kKeyedStoreICStrict;
default:
UNREACHABLE();
}
« no previous file with comments | « no previous file | test/cctest/cctest.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698