b4bbd47e22
* testsuite/libjava.compile/PR16249.java: New test case. PR gcc/16249. From-SVN: r83869
19 lines
380 B
Java
19 lines
380 B
Java
// Regression test for PR java/16249.
|
|
|
|
class PR16249
|
|
{
|
|
static void bug(byte[] iCode, int pc)
|
|
{
|
|
while (pc < 100) {
|
|
try {
|
|
switch (iCode[pc] & 0xff) {
|
|
case 666:
|
|
iCode[++pc] = 1;
|
|
}
|
|
}
|
|
catch (Throwable ex) {
|
|
}
|
|
}
|
|
}
|
|
}
|