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

Unified Diff: src/interpreter/bytecode-flags.h

Issue 2445333002: Ensure slow properties for simple {__proto__:null} literals. (Closed)
Patch Set: addressing nits Created 3 years, 9 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-flags.h
diff --git a/src/interpreter/bytecode-flags.h b/src/interpreter/bytecode-flags.h
index 6e87ce20b23c41d3287ce0e156c362334ceb3c2d..45876bdfe8d723a80e2c3ad10c4b5d22d93b0586 100644
--- a/src/interpreter/bytecode-flags.h
+++ b/src/interpreter/bytecode-flags.h
@@ -13,7 +13,7 @@ namespace interpreter {
class CreateArrayLiteralFlags {
public:
- class FlagsBits : public BitField8<int, 0, 3> {};
+ class FlagsBits : public BitField8<int, 0, 5> {};
class FastShallowCloneBit : public BitField8<bool, FlagsBits::kNext, 1> {};
static uint8_t Encode(bool use_fast_shallow_clone, int runtime_flags);
@@ -24,7 +24,7 @@ class CreateArrayLiteralFlags {
class CreateObjectLiteralFlags {
public:
- class FlagsBits : public BitField8<int, 0, 3> {};
+ class FlagsBits : public BitField8<int, 0, 5> {};
class FastClonePropertiesCountBits
: public BitField8<int, FlagsBits::kNext, 3> {};

Powered by Google App Engine
This is Rietveld 408576698