Index: test/cctest/compiler/test-pipeline.cc |
diff --git a/test/cctest/compiler/test-pipeline.cc b/test/cctest/compiler/test-pipeline.cc |
index 84ccc28bde605bcc2f39abda566bb4c4424813ba..7efedeeea2ac1dcc2aacc1182f844d84421fbab2 100644 |
--- a/test/cctest/compiler/test-pipeline.cc |
+++ b/test/cctest/compiler/test-pipeline.cc |
@@ -30,11 +30,11 @@ TEST(PipelineAdd) { |
CHECK_NE(NULL, info.scope()); |
Pipeline pipeline(&info); |
- Handle<Code> code = pipeline.GenerateCode(); |
#if V8_TURBOFAN_TARGET |
+ Handle<Code> code = pipeline.GenerateCode(); |
CHECK(Pipeline::SupportedTarget()); |
CHECK(!code.is_null()); |
#else |
- USE(code); |
+ USE(pipeline); |
#endif |
} |