From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18990 invoked by alias); 8 Dec 2006 01:14:02 -0000 Received: (qmail 18823 invoked by uid 48); 8 Dec 2006 01:13:51 -0000 Date: Fri, 08 Dec 2006 01:14:00 -0000 Message-ID: <20061208011351.18822.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug libgcj/30076] [ecj] Annotations don't work with interpreted code In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "tromey at gcc dot gnu dot org" Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2006-12/txt/msg00663.txt.bz2 ------- Comment #5 from tromey at gcc dot gnu dot org 2006-12-08 01:13 ------- I needed this to see correct output. There's still some oddity where main sorts before barf in the output, I haven't looked at that. --- pp.java.~1~ 2006-12-05 11:49:25.000000000 -0700 +++ pp.java 2006-12-07 17:53:09.000000000 -0700 @@ -103,7 +103,7 @@ } int j = 0; Annotation[][] annosAnnos = m.getParameterAnnotations(); - Arrays.sort(annosAnnos, myCollator); + // Arrays.sort(annosAnnos, myCollator); for (Annotation[] a : annosAnnos) { Arrays.sort(a, myCollator); -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30076