6902036: WorldWind asserts on escape.cpp:1153: assert(addr->is_AddP(),"AddP required")
authorkvn
Thu, 19 Nov 2009 14:32:23 -0800
changeset 4442 2e5dafd8f675
parent 4441 1dfb3f44c62a
child 4443 51a0ad4f351a
6902036: WorldWind asserts on escape.cpp:1153: assert(addr->is_AddP(),"AddP required") Summary: Remove the assert. Reviewed-by: twisti
hotspot/src/share/vm/opto/escape.cpp
--- a/hotspot/src/share/vm/opto/escape.cpp	Thu Nov 19 03:41:29 2009 -0800
+++ b/hotspot/src/share/vm/opto/escape.cpp	Thu Nov 19 14:32:23 2009 -0800
@@ -1150,7 +1150,6 @@
     } else {
       assert(n->is_Mem(), "memory node required.");
       Node *addr = n->in(MemNode::Address);
-      assert(addr->is_AddP(), "AddP required");
       const Type *addr_t = igvn->type(addr);
       if (addr_t == Type::TOP)
         continue;