# HG changeset patch # User Roland Schatz # Date 1429781116 -7200 # Node ID 00b66fc966b1050f9451911ff6072aca5c272d5d # Parent 814bd3dbc61544e74d6e2caabc96e1d8dd430a8f Fix wrong argument order in writeNarrow match rule. diff -r 814bd3dbc615 -r 00b66fc966b1 graal/com.oracle.graal.compiler.amd64/src/com/oracle/graal/compiler/amd64/AMD64NodeLIRBuilder.java --- a/graal/com.oracle.graal.compiler.amd64/src/com/oracle/graal/compiler/amd64/AMD64NodeLIRBuilder.java Wed Apr 22 16:18:37 2015 -0700 +++ b/graal/com.oracle.graal.compiler.amd64/src/com/oracle/graal/compiler/amd64/AMD64NodeLIRBuilder.java Thu Apr 23 11:25:16 2015 +0200 @@ -402,7 +402,7 @@ } } - @MatchRule("(Write Narrow=narrow location value)") + @MatchRule("(Write object location Narrow=narrow)") public ComplexMatchResult writeNarrow(WriteNode root, NarrowNode narrow) { return builder -> { LIRKind writeKind = getLIRGeneratorTool().getLIRKind(root.value().stamp());