# HG changeset patch # User Thomas Wuerthinger # Date 1294761758 -3600 # Node ID 0db8c8cc5b4a27273e6c7ae8c8e6f986d66791cd # Parent 04605cd35b9e2f90e81d04df4fe7e75022c3085d Removed assert. diff -r 04605cd35b9e -r 0db8c8cc5b4a c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotTargetMethod.java --- 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 {