This is the mail archive of the java-prs@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug java/21519] ICE in generate_bytecode_conditional, at java/jcf-write.c:1337


------- Additional Comments From tromey at gcc dot gnu dot org  2005-05-13 20:17 -------
Reduced test case

public class reduce {
  char[] source;
  public int compute(int pos) {
    for (int i = 0; i < pos; ++i)
      if (!(source[i] == ' ' || source[i] == '\t')) return -1;
    return pos;
  }
}


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21519


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]