< prev index next >

src/share/vm/opto/subnode.cpp

Print this page

        

@@ -145,13 +145,13 @@
   uint op2 = in2->Opcode();
 
 #ifdef ASSERT
   // Check for dead loop
   if( phase->eqv( in1, this ) || phase->eqv( in2, this ) ||
-      ( op1 == Op_AddI || op1 == Op_SubI ) &&
-      ( phase->eqv( in1->in(1), this ) || phase->eqv( in1->in(2), this ) ||
-        phase->eqv( in1->in(1), in1  ) || phase->eqv( in1->in(2), in1 ) ) )
+      ( ( op1 == Op_AddI || op1 == Op_SubI ) &&
+        ( phase->eqv( in1->in(1), this ) || phase->eqv( in1->in(2), this ) ||
+          phase->eqv( in1->in(1), in1  ) || phase->eqv( in1->in(2), in1 ) ) ) )
     assert(false, "dead loop in SubINode::Ideal");
 #endif
 
   const Type *t2 = phase->type( in2 );
   if( t2 == Type::TOP ) return NULL;

@@ -275,13 +275,13 @@
   uint op2 = in2->Opcode();
 
 #ifdef ASSERT
   // Check for dead loop
   if( phase->eqv( in1, this ) || phase->eqv( in2, this ) ||
-      ( op1 == Op_AddL || op1 == Op_SubL ) &&
-      ( phase->eqv( in1->in(1), this ) || phase->eqv( in1->in(2), this ) ||
-        phase->eqv( in1->in(1), in1  ) || phase->eqv( in1->in(2), in1  ) ) )
+      ( ( op1 == Op_AddL || op1 == Op_SubL ) &&
+        ( phase->eqv( in1->in(1), this ) || phase->eqv( in1->in(2), this ) ||
+          phase->eqv( in1->in(1), in1  ) || phase->eqv( in1->in(2), in1  ) ) ) )
     assert(false, "dead loop in SubLNode::Ideal");
 #endif
 
   if( phase->type( in2 ) == Type::TOP ) return NULL;
   const TypeLong *i = phase->type( in2 )->isa_long();
< prev index next >