Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1025)

Unified Diff: src/compiler/typer.cc

Issue 560553006: Fix over-long line (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/typer.cc
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc
index 5a07d101d0c1d793a80f22c897c3362c6129cdd4..1c83fc2cb0e6d41ae6bd5a1daa55f7b663fbd336 100644
--- a/src/compiler/typer.cc
+++ b/src/compiler/typer.cc
@@ -129,7 +129,7 @@ class Typer::RunVisitor : public Typer::Visitor {
int arity = OperatorProperties::GetValueInputCount(node->op());
for (int i = 0; i < arity; ++i) {
// TODO(rossberg): change once IsTyped is available.
- // if (!NodeProperties::IsTyped(NodeProperties::GetValueInput(node, i))) {
+ // if (!NodeProperties::IsTyped(NodeProperties::GetValueInput(node, i)))
if (OperandType(node, i).upper->Is(Type::None())) {
redo.insert(node);
break;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698