Reviewers: rossberg,

Message:
Committed patchset #1 manually as 24628 (tree was closed).

Description:
Presubmit checks

[email protected]
BUG=

Committed: https://code.google.com/p/v8/source/detail?r=24628

Please review this at https://codereview.chromium.org/658733002/

Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+4, -4 lines):
  M src/compiler/verifier.cc


Index: src/compiler/verifier.cc
diff --git a/src/compiler/verifier.cc b/src/compiler/verifier.cc
index 09b78ae1acd0fc409d4370e604a3937e48eb2222..a8b09635d2a1d8c0a648f9f8c786164981bee08d 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));


--
--
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