# HG changeset patch # User Tom Rodriguez # Date 1392143828 28800 # Node ID 7d1d638bd7d6e86c77b4de8e761d78c5f939a022 # Parent f191cac0460597fc76e8a35f945db9e7edf918c6 fix comment typo diff -r f191cac04605 -r 7d1d638bd7d6 graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/extended/ReadNode.java --- a/graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/extended/ReadNode.java Tue Feb 11 10:36:57 2014 -0800 +++ b/graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/extended/ReadNode.java Tue Feb 11 10:37:08 2014 -0800 @@ -71,7 +71,7 @@ public static ValueNode canonicalizeRead(ValueNode read, LocationNode location, ValueNode object, CanonicalizerTool tool, boolean compressible) { MetaAccessProvider metaAccess = tool.getMetaAccess(); if (read.usages().isEmpty()) { - // Read without usages can be savely removed. + // Read without usages can be safely removed. return null; } if (tool.canonicalizeReads() && metaAccess != null && object != null && object.isConstant()) {