Skip to content
Snippets Groups Projects
Commit 5b2c78f1 authored by Lukas Stadler's avatar Lukas Stadler
Browse files

Merge pull request #569 in G/fastr from...

Merge pull request #569 in G/fastr from ~LUKAS.STADLER_ORACLE.COM/fastr:bugfix/cast_list_node to master

* commit 'af437d36':
  fix ordering of transferToInterpreter and node insertion in CastListNode
parents 99b7440f af437d36
No related branches found
No related tags found
No related merge requests found
......@@ -101,8 +101,8 @@ public abstract class CastListNode extends CastBaseNode {
if (attr.getName().equals(RRuntime.CLASS_ATTR_KEY)) {
if (setClassAttrNode == null) {
setClassAttrNode = insert(SetClassAttributeNode.create());
CompilerDirectives.transferToInterpreterAndInvalidate();
setClassAttrNode = insert(SetClassAttributeNode.create());
}
setClassAttrNode.execute(result, attr.getValue());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment