This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC 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/20056] [4.0 regression] 'verification failed: incompatible type on stack' with --indirect-dispatch


------- Additional Comments From bonniot at users dot sf dot net  2005-02-19 02:35 -------
Since bytecode classes cannot be put in the testsuite at the moment, here is a
Java source that, when first compiled to bytecode, exercises this bug during the
bytecode->native compilation, still with --indirect-dispatch.

class Field {
  int x;
  Field(int x) {}
  Field(Field f) {
    this(f.x = 0);
  }
}


-- 


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


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