Skip to content

Commit 9f7e4c1

Browse files
committed
fix truffleboundary call on fast path
1 parent 6810504 commit 9f7e4c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/attributes/ReadAttributeFromObjectNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ protected static boolean isBuiltinDict(PHashingCollection globals, IsBuiltinClas
113113
* @param module Non-cached parameter to help the DSL produce a guard, not an assertion
114114
*/
115115
protected static HashingStorage getStorage(Object module, PHashingCollection cachedGlobals) {
116-
return HashingCollectionNodes.GetDictStorageNode.getUncached().execute(cachedGlobals);
116+
return ((PDict) cachedGlobals).getDictStorage();
117117
}
118118

119119
protected static PHashingCollection getDict(Object object) {

0 commit comments

Comments
 (0)