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 rtl-optimization/26222] [4.2 Regression] build failuring in libjava



------- Comment #2 from pinskia at gcc dot gnu dot org  2006-02-11 16:43 -------
Reduced Java source:
class A
{
  {
    int clutOffset = 52 + 256 * 3 * 2;
    for (int x = 0; x < 16; x++)
      for (int y = 0; y < 16; y++)
        for (int z = 0; z < 16; z++)
          {
            int offset = clutOffset + z * 6 + y * 16 * 6 + x * 16 * 16 * 6;
            double xf = ((double) x) / ((double) 16 - 1.0);
            putShort(offset, (short) (xf * 65535.0));
          }
  }
  public final native void putShort(int a, short b);
}


-- 


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


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