hotspot/src/share/vm/c1/c1_LIR.cpp
changeset 29474 81a5c5330d08
parent 29362 4188dc7f05a8
child 30305 b92a97e1e9cb
--- a/hotspot/src/share/vm/c1/c1_LIR.cpp	Fri Mar 06 04:58:52 2015 -0800
+++ b/hotspot/src/share/vm/c1/c1_LIR.cpp	Tue Feb 24 17:23:53 2015 -0500
@@ -142,16 +142,11 @@
 
 
 #ifndef PRODUCT
-void LIR_Address::verify() const {
+void LIR_Address::verify0() const {
 #if defined(SPARC) || defined(PPC)
   assert(scale() == times_1, "Scaled addressing mode not available on SPARC/PPC and should not be used");
   assert(disp() == 0 || index()->is_illegal(), "can't have both");
 #endif
-#ifdef ARM
-  assert(disp() == 0 || index()->is_illegal(), "can't have both");
-  // Note: offsets higher than 4096 must not be rejected here. They can
-  // be handled by the back-end or will be rejected if not.
-#endif
 #ifdef _LP64
   assert(base()->is_cpu_register(), "wrong base operand");
 #ifndef AARCH64