Revision: 24628
Author:   [email protected]
Date:     Wed Oct 15 11:58:30 2014 UTC
Log:      Presubmit checks

[email protected]
BUG=

Review URL: https://codereview.chromium.org/658733002
https://code.google.com/p/v8/source/detail?r=24628

Modified:
 /branches/bleeding_edge/src/compiler/verifier.cc

=======================================
--- /branches/bleeding_edge/src/compiler/verifier.cc Wed Oct 15 11:56:05 2014 UTC +++ /branches/bleeding_edge/src/compiler/verifier.cc Wed Oct 15 11:58:30 2014 UTC
@@ -494,7 +494,7 @@
         // 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 @@
       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 @@
       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 @@
       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));

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to