Fix unreacheable ASL dump

This commit is contained in:
Lander Gallastegi 2025-02-20 15:12:24 +01:00 committed by Lander Gallastegi
parent 85334a924a
commit 7e1159bdaf

View File

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