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

Unified Diff: src/v8.cc

Issue 285233010: Decouple CpuFeatures from serializer state. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | « src/runtime.cc ('k') | src/v8globals.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/v8.cc
diff --git a/src/v8.cc b/src/v8.cc
index c8d7e0381ed5c285fe092e853401ac1ae479a027..08afb54e69b60017025c919360aa258c73bef22c 100644
--- a/src/v8.cc
+++ b/src/v8.cc
@@ -96,9 +96,7 @@ void V8::InitializeOncePerProcessImpl() {
platform_ = new DefaultPlatform;
#endif
Sampler::SetUp();
- // TODO(svenpanne) Clean this up when Serializer is a real object.
- bool serializer_enabled = Serializer::enabled(NULL);
- CpuFeatures::Probe(serializer_enabled);
+ CpuFeatures::Probe(false);
OS::PostSetUp();
// The custom exp implementation needs 16KB of lookup data; initialize it
// on demand.
« no previous file with comments | « src/runtime.cc ('k') | src/v8globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698