From 458db603a4e72dd6888f588726b78163ae45551a Mon Sep 17 00:00:00 2001 From: "rossberg@chromium.org" Date: Wed, 15 Oct 2014 11:58:30 +0000 Subject: [PATCH] Presubmit checks TBR=rossberg@chromium.org BUG= Review URL: https://codereview.chromium.org/658733002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@24628 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/compiler/verifier.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/compiler/verifier.cc b/src/compiler/verifier.cc index 09b78ae1ac..a8b09635d2 100644 --- a/src/compiler/verifier.cc +++ b/src/compiler/verifier.cc @@ -494,7 +494,7 @@ GenericGraphVisit::Control Verifier::Visitor::Pre(Node* node) { // Unsigned32 /\ Tagged -> Unsigned32 /\ UntaggedInt32 // TODO(neis): Activate once ChangeRepresentation works in typer. // Type* from = Type::Intersect(Type::Unsigned32(), Type::Tagged()); - // Type* to = Type::Intersect(Type::Unsigned32(), Type::UntaggedInt32()); + // Type* to =Type::Intersect(Type::Unsigned32(), Type::UntaggedInt32()); // CHECK(bounds(Operand(node)).upper->Is(from)); // CHECK(bounds(node).upper->Is(to)); break; @@ -511,7 +511,7 @@ GenericGraphVisit::Control Verifier::Visitor::Pre(Node* node) { case IrOpcode::kChangeInt32ToTagged: { // Signed32 /\ UntaggedInt32 -> Signed32 /\ Tagged // TODO(neis): Activate once ChangeRepresentation works in typer. - // Type* from = Type::Intersect(Type::Signed32(), Type::UntaggedInt32()); + // Type* from =Type::Intersect(Type::Signed32(), Type::UntaggedInt32()); // Type* to = Type::Intersect(Type::Signed32(), Type::Tagged()); // CHECK(bounds(Operand(node)).upper->Is(from)); // CHECK(bounds(node).upper->Is(to)); @@ -520,7 +520,7 @@ GenericGraphVisit::Control Verifier::Visitor::Pre(Node* node) { case IrOpcode::kChangeUint32ToTagged: { // Unsigned32 /\ UntaggedInt32 -> Unsigned32 /\ Tagged // TODO(neis): Activate once ChangeRepresentation works in typer. - // Type* from = Type::Intersect(Type::Unsigned32(), Type::UntaggedInt32()); + // Type* from=Type::Intersect(Type::Unsigned32(),Type::UntaggedInt32()); // Type* to = Type::Intersect(Type::Unsigned32(), Type::Tagged()); // CHECK(bounds(Operand(node)).upper->Is(from)); // CHECK(bounds(node).upper->Is(to)); @@ -529,7 +529,7 @@ GenericGraphVisit::Control Verifier::Visitor::Pre(Node* node) { case IrOpcode::kChangeFloat64ToTagged: { // Number /\ UntaggedFloat64 -> Number /\ Tagged // TODO(neis): Activate once ChangeRepresentation works in typer. - // Type* from = Type::Intersect(Type::Number(), Type::UntaggedFloat64()); + // Type* from =Type::Intersect(Type::Number(), Type::UntaggedFloat64()); // Type* to = Type::Intersect(Type::Number(), Type::Tagged()); // CHECK(bounds(Operand(node)).upper->Is(from)); // CHECK(bounds(node).upper->Is(to));