This is the mail archive of the
java-prs@gcc.gnu.org
mailing list for the Java project.
[Bug libgcj/30076] [ecj] Annotations don't work with interpreted code
- From: "tromey at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: java-prs at gcc dot gnu dot org
- Date: 8 Dec 2006 01:13:51 -0000
- Subject: [Bug libgcj/30076] [ecj] Annotations don't work with interpreted code
- References: <bug-30076-511@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- 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