# HG changeset patch # User Doug Simon # Date 1357948160 -3600 # Node ID 62554b96c6827743cb4fa932cadb3732b5570dd1 # Parent c10ee98124e3cdf98dc6e74216d175c67fc95eed bug isolation: completely disabled arraycopy intrinsification for Object arrays diff -r c10ee98124e3 -r 62554b96c682 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/snippets/IntrinsifyArrayCopyPhase.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/snippets/IntrinsifyArrayCopyPhase.java Sat Jan 12 00:11:23 2013 +0100 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/snippets/IntrinsifyArrayCopyPhase.java Sat Jan 12 00:49:20 2013 +0100 @@ -110,10 +110,6 @@ snippetMethod = doubleArrayCopy; } } - } else if (destType.getComponentType() == srcType.getComponentType() || destType.getComponentType().isAssignableFrom(srcType.getComponentType())) { - if (destStamp.isExactType()) { - snippetMethod = objectArrayCopy; - } } } }