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

Unified Diff: src/ic/ic.h

Issue 898983002: Add strong mode. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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
Index: src/ic/ic.h
diff --git a/src/ic/ic.h b/src/ic/ic.h
index 5f66e88bf022481e71760e435b88a50f1689a361..d3620b9a61a8d9e5760f8d932129097cf9dfe0e1 100644
--- a/src/ic/ic.h
+++ b/src/ic/ic.h
@@ -520,8 +520,8 @@ class KeyedLoadIC : public LoadIC {
class StoreIC : public IC {
public:
- STATIC_ASSERT(i::LANGUAGE_END == 2);
- class LanguageModeState : public BitField<LanguageMode, 1, 1> {};
+ STATIC_ASSERT(i::LANGUAGE_END == 3);
+ class LanguageModeState : public BitField<LanguageMode, 1, 2> {};
static ExtraICState ComputeExtraICState(LanguageMode flag) {
return LanguageModeState::encode(flag);
}

Powered by Google App Engine
This is Rietveld 408576698