# HG changeset patch # User Lukas Stadler # Date 1329743918 -3600 # Node ID 5d9013afbffffd4eceea7864e927d66d8239ce28 # Parent 2855c491e2bd993c0c73f6297b21d9677c352732 small fix to PostOrderNodeIterator diff -r 2855c491e2bd -r 5d9013afbfff graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/graph/PostOrderNodeIterator.java --- a/graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/graph/PostOrderNodeIterator.java Sun Feb 19 04:28:40 2012 +0100 +++ b/graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/graph/PostOrderNodeIterator.java Mon Feb 20 14:18:38 2012 +0100 @@ -48,7 +48,7 @@ FixedNode current = start; do { - if (current instanceof Invoke) { + if (current instanceof InvokeWithExceptionNode) { invoke((Invoke) current); queueSuccessors(current, null); current = nextQueuedNode();