changeset 21329:6a32034ace1b

LinearScan: make opIdToIndex private.
author Josef Eisl <josef.eisl@jku.at>
date Tue, 12 May 2015 13:08:43 +0200
parents de17f6676a43
children e35311c60c84
files graal/com.oracle.graal.lir/src/com/oracle/graal/lir/alloc/lsra/LinearScan.java
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/alloc/lsra/LinearScan.java	Tue May 12 12:19:39 2015 +0200
+++ b/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/alloc/lsra/LinearScan.java	Tue May 12 13:08:43 2015 +0200
@@ -397,10 +397,10 @@
 
     /**
      * Converts an {@linkplain LIRInstruction#id instruction id} to an instruction index. All LIR
-     * instructions in a method have an index one greater than their linear-scan order predecesor
+     * instructions in a method have an index one greater than their linear-scan order predecessor
      * with the first instruction having an index of 0.
      */
-    static int opIdToIndex(int opId) {
+    private static int opIdToIndex(int opId) {
         return opId >> 1;
     }