Index: src/compiler/pipeline.cc |
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc |
index ca58e173bdb27c7574f6123f83328a626817c18c..469a7eda4260f55303f25872fd2742b3e50cd833 100644 |
--- a/src/compiler/pipeline.cc |
+++ b/src/compiler/pipeline.cc |
@@ -145,7 +145,7 @@ class AstGraphBuilderWithPositions : public AstGraphBuilder { |
} |
#define DEF_VISIT(type) \ |
- virtual void Visit##type(type* node) OVERRIDE { \ |
+ virtual void Visit##type(type* node) OVERRIDE { \ |
SourcePositionTable::Scope pos(source_positions_, \ |
SourcePosition(node->position())); \ |
AstGraphBuilder::Visit##type(node); \ |
@@ -173,7 +173,7 @@ Handle<Code> Pipeline::GenerateCode() { |
info()->function()->dont_optimize_reason() == kForOfStatement || |
// TODO(turbofan): Make super work and remove this bailout. |
info()->function()->dont_optimize_reason() == kSuperReference || |
- // TODO(turbofan): Make classliterals work and remove this bailout. |
+ // TODO(turbofan): Make class literals work and remove this bailout. |
info()->function()->dont_optimize_reason() == kClassLiteral || |
// TODO(turbofan): Make OSR work and remove this bailout. |
info()->is_osr()) { |