Commit 670469c4 authored by Michael Arntzenius's avatar Michael Arntzenius

print HASNEXT primitive properly

parent 743cc66a
......@@ -1481,6 +1481,9 @@ bool PrintVisitor::visit_langprimitive(AST_LangPrimitive* node) {
case AST_LangPrimitive::UNCACHE_EXC_INFO:
printf("UNCACHE_EXC_INFO");
break;
case AST_LangPrimitive::HASNEXT:
printf("HASNEXT");
break;
default:
RELEASE_ASSERT(0, "%d", node->opcode);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment