Commit b2a8ad2c authored by rossberg@chromium.org's avatar rossberg@chromium.org

Fix over-long line

TBR=bmeurer@chromium.org
BUG=

Review URL: https://codereview.chromium.org/560553006

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23933 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 72bf3ad9
...@@ -129,7 +129,7 @@ class Typer::RunVisitor : public Typer::Visitor { ...@@ -129,7 +129,7 @@ class Typer::RunVisitor : public Typer::Visitor {
int arity = OperatorProperties::GetValueInputCount(node->op()); int arity = OperatorProperties::GetValueInputCount(node->op());
for (int i = 0; i < arity; ++i) { for (int i = 0; i < arity; ++i) {
// TODO(rossberg): change once IsTyped is available. // 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())) { if (OperandType(node, i).upper->Is(Type::None())) {
redo.insert(node); redo.insert(node);
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment