diff options
author | Michaƫl Zasso <mic.besace@gmail.com> | 2015-10-06 08:42:38 +0200 |
---|---|---|
committer | Ali Ijaz Sheikh <ofrobots@google.com> | 2015-10-14 11:20:34 -0700 |
commit | d8011d1683fe0d977de2bea1147f5213d4490c5a (patch) | |
tree | 54967df8dc1732e59eef39e5c5b39fe99ad88977 /deps/v8/test/cctest/compiler/test-pipeline.cc | |
parent | d1a2e5357ef0357cec9b516fa9ac78cc38a984aa (diff) | |
download | node-new-d8011d1683fe0d977de2bea1147f5213d4490c5a.tar.gz |
deps: upgrade V8 to 4.6.85.23
PR-URL: https://github.com/nodejs/node/pull/3351
Reviewed-By: indutny - Fedor Indutny <fedor.indutny@gmail.com>
Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'deps/v8/test/cctest/compiler/test-pipeline.cc')
-rw-r--r-- | deps/v8/test/cctest/compiler/test-pipeline.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/deps/v8/test/cctest/compiler/test-pipeline.cc b/deps/v8/test/cctest/compiler/test-pipeline.cc index 84550d502a..8996718644 100644 --- a/deps/v8/test/cctest/compiler/test-pipeline.cc +++ b/deps/v8/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 } |