changeset 17185:7169e42f7e1b

updated CHANGELOG.md
author Doug Simon <doug.simon@oracle.com>
date Tue, 23 Sep 2014 13:10:25 +0200
parents 1cc8b62b4d37
children ca13853abf0d
files CHANGELOG.md graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/match/MatchableNode.java
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/CHANGELOG.md	Tue Sep 23 13:09:06 2014 +0200
+++ b/CHANGELOG.md	Tue Sep 23 13:10:25 2014 +0200
@@ -13,6 +13,8 @@
 * New register allocator optimization: `-G:+ConstantLoadOptimization`.
 * SPARC backend is able to run benchmark and passing most of the JTTs.
 * Fix: Stamp: interface types can not be trusted except after explicit runtime checks.
+* Changed format of suite specification from a properties file (`mx/projects`) to a Python file (`mx/projects.py`).
+
 
 ### Truffle
 * Added `TruffleRuntime#getCallTargets()` to get all call targets that were created and are still referenced.
--- a/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/match/MatchableNode.java	Tue Sep 23 13:09:06 2014 +0200
+++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/match/MatchableNode.java	Tue Sep 23 13:10:25 2014 +0200
@@ -55,7 +55,7 @@
     boolean commutative() default false;
 
     /**
-     * Can a node with multiple users be safely match by a rule.
+     * Can a node with multiple uses be safely matched by a rule.
      */
     boolean shareable() default false;
 }