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

Unified Diff: src/code-stubs.cc

Issue 8329022: Porting r9605 to arm (elements kind conversion in generated code). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Reset flag definitions to default. Created 9 years, 2 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/code-stubs.cc
diff --git a/src/code-stubs.cc b/src/code-stubs.cc
index a298bc454ee03da76b831a791ab22df6f27dff93..896ffad054e41f0a9a93319d86b19db0b2ae398b 100644
--- a/src/code-stubs.cc
+++ b/src/code-stubs.cc
@@ -416,7 +416,6 @@ bool ToBooleanStub::Types::CanBeUndetectable() const {
void FastElementsConversionStub::Generate(MacroAssembler* masm) {
-#if defined(V8_TARGET_ARCH_IA32) || defined(V8_TARGET_ARCH_X64)
if (to_ == FAST_ELEMENTS) {
if (from_ == FAST_SMI_ONLY_ELEMENTS) {
GenerateSmiOnlyToObject(masm);
@@ -434,9 +433,6 @@ void FastElementsConversionStub::Generate(MacroAssembler* masm) {
} else {
UNREACHABLE();
}
-#else
- KeyedStoreIC::GenerateRuntimeSetProperty(masm, strict_mode_);
-#endif // V8_TARGET_ARCH_IA32 || V8_TARGET_ARCH_X64
}
} } // namespace v8::internal

Powered by Google App Engine
This is Rietveld 408576698