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

Unified Diff: src/code-stubs.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/code-stubs.h ('k') | src/flags.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stubs.cc
diff --git a/src/code-stubs.cc b/src/code-stubs.cc
index 64fb3eb705bf7e5047e6a572694c5c9a37e716ac..02cb930408d2205626ddca11dccbb062bb171b93 100644
--- a/src/code-stubs.cc
+++ b/src/code-stubs.cc
@@ -106,11 +106,6 @@ Handle<Code> PlatformCodeStub::GenerateCode() {
}
-void CodeStub::VerifyPlatformFeatures() {
- ASSERT(CpuFeatures::VerifyCrossCompiling());
-}
-
-
Handle<Code> CodeStub::GetCode() {
Heap* heap = isolate()->heap();
Code* code;
@@ -121,10 +116,6 @@ Handle<Code> CodeStub::GetCode() {
return Handle<Code>(code);
}
-#ifdef DEBUG
- VerifyPlatformFeatures();
-#endif
-
{
HandleScope scope(isolate());
« no previous file with comments | « src/code-stubs.h ('k') | src/flags.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698