re PR java/15769 (ICE: infinite recursion through gimplify_expr)

2004-06-08  Andrew Pinski  <pinskia@physics.uc.edu>

        PR java/15769
        * libjava.compile/PR15769.java: New test.

From-SVN: r82757
This commit is contained in:
Andrew Pinski 2004-06-08 06:30:33 -07:00
parent c1b69e3ca2
commit a921159ad4
2 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2004-06-08 Andrew Pinski <pinskia@physics.uc.edu>
PR java/15769
* libjava.compile/PR15769.java: New test.
2004-01-12 Andreas Tobler <a.tobler@schweiz.ch>
* lib/libjava.exp: Add LD_LIBRARY_PATH_32/64 to get proper

View File

@ -0,0 +1,10 @@
class PR15769 {
private boolean foo () { return false; }
public boolean bar (double blaz)
{
return (Double.POSITIVE_INFINITY != blaz) && foo ();
}
}