Chromium Code Reviews| Index: src/compiler.cc |
| diff --git a/src/compiler.cc b/src/compiler.cc |
| index b46a201240ace18de63c56e60af31b0a2aee4130..2d3675bcb4d7c79c31a79f2f63e1dc01fe87d291 100644 |
| --- a/src/compiler.cc |
| +++ b/src/compiler.cc |
| @@ -406,6 +406,8 @@ OptimizedCompileJob::Status OptimizedCompileJob::CreateGraph() { |
| // TODO(turbofan): Make try-catch work and remove this bailout. |
| info()->function()->dont_optimize_reason() != kTryCatchStatement && |
| info()->function()->dont_optimize_reason() != kTryFinallyStatement && |
| + // TODO(turbofan): Make super work and remove this bailour. |
|
arv (Not doing code reviews)
2014/09/09 22:38:46
typo
Dmitry Lomov (no reviews)
2014/09/15 12:31:12
Done.
|
| + info()->function()->dont_optimize_reason() != kSuperReference && |
| // TODO(turbofan): Make OSR work and remove this bailout. |
| !info()->is_osr()) { |
| compiler::Pipeline pipeline(info()); |