# HG changeset patch # User Stefan Anzinger # Date 1450449109 -3600 # Node ID c68ee5639632d989c543cfb249b56d4861aa702c # Parent aed0201715a158b8174ba2921d8091a3dc39f92d Add message when no appropriate LIRKind is provided for shl diff -r aed0201715a1 -r c68ee5639632 graal/com.oracle.graal.compiler.sparc/src/com/oracle/graal/compiler/sparc/SPARCArithmeticLIRGenerator.java --- a/graal/com.oracle.graal.compiler.sparc/src/com/oracle/graal/compiler/sparc/SPARCArithmeticLIRGenerator.java Fri Dec 18 15:30:22 2015 +0100 +++ b/graal/com.oracle.graal.compiler.sparc/src/com/oracle/graal/compiler/sparc/SPARCArithmeticLIRGenerator.java Fri Dec 18 15:31:49 2015 +0100 @@ -457,7 +457,7 @@ op = Op3s.Sllx; break; default: - throw JVMCIError.shouldNotReachHere(); + throw JVMCIError.shouldNotReachHere(String.format("Unsupported kind %s", aKind)); } return emitBinary(resultKind, op, a, b); }