mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-26 12:23:59 +08:00
For PR java/6388:
* libjava.lang/pr6388.java: New file. * libjava.lang/pr6388.out: New file. From-SVN: r58475
This commit is contained in:
parent
0d3911c904
commit
6ddbb7ebba
@ -1,3 +1,9 @@
|
||||
2002-10-23 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
For PR java/6388:
|
||||
* libjava.lang/pr6388.java: New file.
|
||||
* libjava.lang/pr6388.out: New file.
|
||||
|
||||
2002-10-15 Andrew Haley <aph@redhat.com>
|
||||
|
||||
* libjava.lang/EvaluationOrder.java (EvaluationOrder): New.
|
||||
|
10
libjava/testsuite/libjava.lang/pr6388.java
Normal file
10
libjava/testsuite/libjava.lang/pr6388.java
Normal file
@ -0,0 +1,10 @@
|
||||
public class pr6388
|
||||
{
|
||||
public static void main (String[] args)
|
||||
{
|
||||
System.out.println (Integer.MIN_VALUE);
|
||||
System.out.println (0x80000000);
|
||||
System.out.println (Integer.MIN_VALUE == 0x80000000);
|
||||
System.out.println (0x80000000 == 0x80000000);
|
||||
}
|
||||
}
|
4
libjava/testsuite/libjava.lang/pr6388.out
Normal file
4
libjava/testsuite/libjava.lang/pr6388.out
Normal file
@ -0,0 +1,4 @@
|
||||
-2147483648
|
||||
-2147483648
|
||||
true
|
||||
true
|
Loading…
Reference in New Issue
Block a user