# HG changeset patch # User Doug Simon # Date 1375833435 -7200 # Node ID 5420b872e72826ccc533a3a65e084a0f5050657c # Parent f850996cc98de0abd14ae03bb482ed2c04e3dd0c minor spelling correction diff -r f850996cc98d -r 5420b872e728 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/replacements/CRC32Substitutions.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/replacements/CRC32Substitutions.java Wed Aug 07 01:56:56 2013 +0200 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/replacements/CRC32Substitutions.java Wed Aug 07 01:57:15 2013 +0200 @@ -71,7 +71,7 @@ return updateBytes(UPDATE_BYTES_CRC32, crc, bufAddr, len); } - public static final ForeignCallDescriptor UPDATE_BYTES_CRC32 = new ForeignCallDescriptor("updatedBytesCRC32", int.class, int.class, Word.class, int.class); + public static final ForeignCallDescriptor UPDATE_BYTES_CRC32 = new ForeignCallDescriptor("updateBytesCRC32", int.class, int.class, Word.class, int.class); @NodeIntrinsic(ForeignCallNode.class) public static native int updateBytes(@ConstantNodeParameter ForeignCallDescriptor descriptor, int crc, Word buf, int length);