diff src/share/vm/opto/subnode.hpp @ 6207:ae9241bbce4a

7181658: CTW: assert(t->meet(t0) == t) failed: Not monotonic Summary: Use uncast node equivalence checks in CmpUNode::sub. Reviewed-by: kvn, twisti Contributed-by: vladimir.x.ivanov@oracle.com
author kvn
date Wed, 11 Jul 2012 14:50:30 -0700
parents f1d6640088a1
children b9a9ed0f8eeb
line wrap: on
line diff
--- a/src/share/vm/opto/subnode.hpp	Mon Jul 02 12:59:43 2012 -0700
+++ b/src/share/vm/opto/subnode.hpp	Wed Jul 11 14:50:30 2012 -0700
@@ -158,6 +158,7 @@
   CmpUNode( Node *in1, Node *in2 ) : CmpNode(in1,in2) {}
   virtual int Opcode() const;
   virtual const Type *sub( const Type *, const Type * ) const;
+  bool is_index_range_check() const;
 };
 
 //------------------------------CmpPNode---------------------------------------