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:
parent
c1b69e3ca2
commit
a921159ad4
2 changed files with 15 additions and 0 deletions
|
@ -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
|
||||
|
|
10
libjava/testsuite/libjava.compile/PR15769.java
Normal file
10
libjava/testsuite/libjava.compile/PR15769.java
Normal file
|
@ -0,0 +1,10 @@
|
|||
class PR15769 {
|
||||
private boolean foo () { return false; }
|
||||
|
||||
|
||||
public boolean bar (double blaz)
|
||||
{
|
||||
return (Double.POSITIVE_INFINITY != blaz) && foo ();
|
||||
}
|
||||
}
|
||||
|
Loading…
Add table
Reference in a new issue