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

Unified Diff: src/hydrogen-instructions.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/hydrogen-instructions.h
diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h
index 5e587ce20f72effe0bc2d468292c526a67e2fd2f..c3f8d9e9d3fcebe6cbdb1c54a9329bc64174b5ec 100644
--- a/src/hydrogen-instructions.h
+++ b/src/hydrogen-instructions.h
@@ -7614,8 +7614,8 @@ class HFunctionLiteral FINAL : public HTemplateInstruction<1> {
class FunctionKindField : public BitField<FunctionKind, 0, 4> {};
class PretenureField : public BitField<bool, 5, 1> {};
class HasNoLiteralsField : public BitField<bool, 6, 1> {};
- STATIC_ASSERT(LANGUAGE_END == 2);
- class LanguageModeField : public BitField<LanguageMode, 7, 1> {};
+ STATIC_ASSERT(LANGUAGE_END == 3);
+ class LanguageModeField : public BitField<LanguageMode, 7, 2> {};
Handle<SharedFunctionInfo> shared_info_;
uint32_t bit_field_;

Powered by Google App Engine
This is Rietveld 408576698