Fix unreacheable ASL dump

This commit is contained in:
Lander Gallastegi 2025-02-20 15:12:24 +01:00
parent 6465310942
commit 60be1e4376

View File

@ -22,7 +22,7 @@ std::string DumpASLNode(const AbstractSyntaxNode& node, const std::map<const Blo
case AbstractSyntaxNode::Type::Return: case AbstractSyntaxNode::Type::Return:
return "Return"; return "Return";
case AbstractSyntaxNode::Type::Unreachable: case AbstractSyntaxNode::Type::Unreachable:
UNREACHABLE(); return "Unreachable";
}; };
UNREACHABLE(); UNREACHABLE();
} }