File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
compiler/src/jdk.internal.vm.compiler/src/org/graalvm/compiler/hotspot Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ static class StaticGraphData extends GraphData {
126126
127127 @ Override
128128 int getStartOffset (Class <?> receiverClass ) {
129- assert receiverClass == null ;
129+ assert receiverClass == null : receiverClass ;
130130 return startOffset ;
131131 }
132132 }
@@ -480,7 +480,7 @@ static class GraalCapability {
480480 public Object resolve (GraalRuntime runtime ) {
481481 Object capability = runtime .getCapability (this .capabilityClass );
482482 if (capability != null ) {
483- assert capability .getClass () == capabilityClass ;
483+ assert capability .getClass () == capabilityClass : capability . getClass () + " != " + capabilityClass ;
484484 return capability ;
485485 }
486486 throw new InternalError (this .capabilityClass .getName ());
You can’t perform that action at this time.
0 commit comments