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

Unified Diff: build/features.gypi

Issue 21014003: Optionally use 31-bits SMI value for 64-bit system (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed danno's comments Created 7 years, 4 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 | « Makefile ('k') | include/v8.h » ('j') | src/x64/full-codegen-x64.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/features.gypi
diff --git a/build/features.gypi b/build/features.gypi
index 3c6d25f7587c988b8aec9b81131781903f2e0c0b..bd8e538ff16434929274d441d54dcfc8a6f9d0dd 100644
--- a/build/features.gypi
+++ b/build/features.gypi
@@ -41,6 +41,8 @@
'v8_enable_verify_heap%': 0,
+ 'v8_use_31_bit_smi_value%': 0,
+
'v8_use_snapshot%': 'true',
# With post mortem support enabled, metadata is embedded into libv8 that
@@ -73,6 +75,9 @@
['v8_enable_verify_heap==1', {
'defines': ['VERIFY_HEAP',],
}],
+ ['v8_use_31_bit_smi_value==1', {
+ 'defines': ['V8_USE_31_BIT_SMI_VALUE',],
+ }],
['v8_interpreted_regexp==1', {
'defines': ['V8_INTERPRETED_REGEXP',],
}],
« no previous file with comments | « Makefile ('k') | include/v8.h » ('j') | src/x64/full-codegen-x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698