Skip to content

Commit 8d97214

Browse files
committed
fix svm build
1 parent 5b7bd53 commit 8d97214

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/function/builtins

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/function/builtins/WrapTpNew.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ public Object execute(VirtualFrame frame) {
121121
// we're in. We have our optimizations for this lookup that the compiler can then
122122
// (hopefully) merge with the initial lookup of the new method before entering it.
123123
if (lookupNewNode == null) {
124-
reportPolymorphicSpecialize();
125124
CompilerDirectives.transferToInterpreterAndInvalidate();
125+
reportPolymorphicSpecialize();
126126
lookupNewNode = insert(LookupAttributeInMRONode.createForLookupOfUnmanagedClasses(SpecialMethodNames.__NEW__));
127127
}
128128
Object newMethod = lookupNewNode.execute(arg0);

0 commit comments

Comments
 (0)