Index: test/cctest/compiler/test-pipeline.cc |
diff --git a/test/cctest/compiler/test-pipeline.cc b/test/cctest/compiler/test-pipeline.cc |
index 84550d502a5f5c7c311d3a8603bf5cbafd81eb23..89967186446fa5aebdad7a439e88ce3f49bcc4af 100644 |
--- a/test/cctest/compiler/test-pipeline.cc |
+++ b/test/cctest/compiler/test-pipeline.cc |
@@ -21,13 +21,8 @@ static void RunPipeline(Zone* zone, const char* source) { |
CompilationInfo info(&parse_info); |
Pipeline pipeline(&info); |
-#if V8_TURBOFAN_TARGET |
Handle<Code> code = pipeline.GenerateCode(); |
- CHECK(Pipeline::SupportedTarget()); |
CHECK(!code.is_null()); |
-#else |
- USE(pipeline); |
-#endif |
} |