mirror of git://gcc.gnu.org/git/gcc.git
* libjava.compile/narrow_case.java: New file.
From-SVN: r56604
This commit is contained in:
parent
7acc97e02e
commit
8632ed40b6
|
|
@ -1,3 +1,7 @@
|
||||||
|
2002-08-26 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
|
* libjava.compile/narrow_case.java: New file.
|
||||||
|
|
||||||
2002-08-25 Adam Megacz <adam@xwt.org>
|
2002-08-25 Adam Megacz <adam@xwt.org>
|
||||||
|
|
||||||
* lib/libjava.exp: don't apply -no-install when platform is mingw.
|
* lib/libjava.exp: don't apply -no-install when platform is mingw.
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
public class narrow_case
|
||||||
|
{
|
||||||
|
private int test(byte b)
|
||||||
|
{
|
||||||
|
switch (b)
|
||||||
|
{
|
||||||
|
case '0' :return 0;
|
||||||
|
}
|
||||||
|
return 99;
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue