File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -624,7 +624,8 @@ public void setAsyncgenFirstIter(Object asyncgenFirstIter) {
624624 public void setNativeThreadLocalVarPointer (Object ptr ) {
625625 // either unset or same
626626 assert nativeThreadLocalVarPointer == null || nativeThreadLocalVarPointer == ptr ||
627- InteropLibrary .getUncached ().isIdentical (nativeThreadLocalVarPointer , ptr , InteropLibrary .getUncached ());
627+ InteropLibrary .getUncached ().isIdentical (nativeThreadLocalVarPointer , ptr , InteropLibrary .getUncached ()) : //
628+ String .format ("ptr = %s; nativeThreadLocalVarPointer = %s" , ptr , nativeThreadLocalVarPointer );
628629 this .nativeThreadLocalVarPointer = ptr ;
629630 }
630631 }
You can’t perform that action at this time.
0 commit comments