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

Unified Diff: src/bootstrapper.cc

Issue 115706: X64: Omitted creating native builtins and using them in test-heap. (Closed)
Patch Set: Created 11 years, 7 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 | src/heap.h » ('j') | src/heap.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/bootstrapper.cc
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
index 76bcc0546329efdfe22f418bd4e4f4a8efe45576..57b5aba97e6abf50732e6b3cad27724814303d0b 100644
--- a/src/bootstrapper.cc
+++ b/src/bootstrapper.cc
@@ -1532,7 +1532,10 @@ Genesis::Genesis(Handle<Object> global_object,
SaveContext context;
CreateRoots(global_template, global_object);
+
+#ifndef V8_HOST_ARCH_64_BIT
William Hesse 2009/05/22 12:21:13 This should be marked with a TODO to remove it whe
if (!InstallNatives()) return;
Kevin Millikin (Chromium) 2009/05/22 12:47:49 There may be a general documentation advantage to
Lasse Reichstein 2009/05/22 13:10:10 I have moved the ifdef inside the function, and ev
+#endif // V8_HOST_ARCH_64_BIT
MakeFunctionInstancePrototypeWritable();
BuildSpecialFunctionTable();
« no previous file with comments | « no previous file | src/heap.h » ('j') | src/heap.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698