changeset 2053:0db8c8cc5b4a

Removed assert.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Tue, 11 Jan 2011 17:02:38 +0100
parents 04605cd35b9e
children 3c0a889a176b
files c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotTargetMethod.java
diffstat 1 files changed, 0 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotTargetMethod.java	Tue Jan 11 16:35:10 2011 +0100
+++ b/c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotTargetMethod.java	Tue Jan 11 17:02:38 2011 +0100
@@ -46,9 +46,6 @@
         this.name = null;
 
         sites = getSortedSites(targetMethod);
-        for (int i = 1; i < sites.length; ++i) {
-            assert sites[i - 1].pcOffset <= sites[i].pcOffset : sites[i-1].pcOffset + "<=" + sites[i].pcOffset;
-        }
         if (targetMethod.exceptionHandlers == null) {
             exceptionHandlers = null;
         } else {