# HG changeset patch # User Doug Simon # Date 1371214880 -7200 # Node ID 0b30da13d86b4d29f81b7873feadfd343fd45fe2 # Parent 595f1f253ef489dd5c0f801e02dfa980a527f0b6 fixed bug in InstanceOfSnippets - deoptimization action should be None for instanceofWithProfile snippet diff -r 595f1f253ef4 -r 0b30da13d86b graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/replacements/InstanceOfSnippets.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/replacements/InstanceOfSnippets.java Thu Jun 13 17:15:36 2013 +0200 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/replacements/InstanceOfSnippets.java Fri Jun 14 15:01:20 2013 +0200 @@ -89,7 +89,7 @@ } // Don't throw away the code as we assume this is a rare event // that will periodically occur. - DeoptimizeNode.deopt(InvalidateReprofile, OptimizedTypeCheckViolated); + DeoptimizeNode.deopt(DeoptimizationAction.None, OptimizedTypeCheckViolated); return falseValue; }