Index: src/compiler.cc |
=================================================================== |
--- src/compiler.cc (revision 3071) |
+++ src/compiler.cc (working copy) |
@@ -41,7 +41,6 @@ |
namespace v8 { |
namespace internal { |
-#ifndef V8_TARGET_ARCH_ARM |
class CodeGenSelector: public AstVisitor { |
public: |
@@ -64,9 +63,7 @@ |
DISALLOW_COPY_AND_ASSIGN(CodeGenSelector); |
}; |
-#endif |
- |
static Handle<Code> MakeCode(FunctionLiteral* literal, |
Handle<Script> script, |
Handle<Context> context, |
@@ -106,7 +103,6 @@ |
} |
// Generate code and return it. |
-#ifndef V8_TARGET_ARCH_ARM |
if (FLAG_fast_compiler) { |
CodeGenSelector selector; |
CodeGenSelector::CodeGenTag code_gen = selector.Select(literal); |
@@ -115,8 +111,6 @@ |
} |
ASSERT(code_gen == CodeGenSelector::NORMAL); |
} |
-#endif |
- |
return CodeGenerator::MakeCode(literal, script, is_eval); |
} |
@@ -453,8 +447,6 @@ |
} |
-#ifndef V8_TARGET_ARCH_ARM |
- |
CodeGenSelector::CodeGenTag CodeGenSelector::Select(FunctionLiteral* fun) { |
Scope* scope = fun->scope(); |
@@ -718,7 +710,5 @@ |
#undef BAILOUT |
#undef CHECK_BAILOUT |
-#endif // !defined(V8_TARGET_ARCH_ARM) |
- |
} } // namespace v8::internal |