[Bug tree-optimization/26447] [4.2 Regression] verify_flow_info failed, load PRE with java program
aph at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Wed May 3 10:22:00 GMT 2006
------- Comment #18 from aph at gcc dot gnu dot org 2006-05-03 10:22 -------
gcj -findirect-dispatch doesn't work with .java files, only with .class files,
so I didn't try it.
class XMLStreamWriter
{
void writeCharacters(String s) {}
}
class XMLStreamException extends Exception {}
public class StAXWriter
{
XMLStreamWriter writer;
int indent = 0;
public void writeEnd(boolean wasEmpty)
{
try
{
indent -= 2;
for (int i = 0; i < indent; i++)
writer.writeCharacters(" ");
}
catch (XMLStreamException xmlse)
{
}
}
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26447
More information about the Gcc-bugs
mailing list