# HG changeset patch # User Tom Rodriguez # Date 1403571614 25200 # Node ID 8322735c75401cc5e5cb8fa308dec62590263d2b # Parent 91a5fc21f11b8d1e3f3945f9f2a52b3ca1ab195d add missing final to INTERIOR_MATCH diff -r 91a5fc21f11b -r 8322735c7540 graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/match/ComplexMatchValue.java --- a/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/match/ComplexMatchValue.java Mon Jun 23 14:38:42 2014 -0700 +++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/match/ComplexMatchValue.java Mon Jun 23 18:00:14 2014 -0700 @@ -37,7 +37,7 @@ * This is the Value of a node which was matched as part of a complex match. The value isn't * actually useable but this marks it as having been evaluated. */ - @SuppressWarnings("serial") public static Value INTERIOR_MATCH = new Value(LIRKind.Illegal) { + @SuppressWarnings("serial") public static final Value INTERIOR_MATCH = new Value(LIRKind.Illegal) { @Override public String toString() {