# HG changeset patch # User Doug Simon # Date 1357945817 -3600 # Node ID d947dd27a763bf4284123d0aa77e254bd6028bbe # Parent b314440029ea859c1d5ee743594172a03311e437 bug isolation: completely disabled arraycopy intrinsification for Object arrays diff -r b314440029ea -r d947dd27a763 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:09:42 2013 +0100 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/snippets/IntrinsifyArrayCopyPhase.java Sat Jan 12 00:10:17 2013 +0100 @@ -110,11 +110,11 @@ snippetMethod = doubleArrayCopy; } } - } else if (destType.getComponentType().isAssignableFrom(srcType.getComponentType())) { - if (destStamp.isExactType()) { +// } else if (destType.getComponentType().isAssignableFrom(srcType.getComponentType())) { +// if (destStamp.isExactType()) { // snippetMethod = objectArrayCopy; - } - } +// } +// } } }