feat: no VoidValue, just Void type

This commit is contained in:
2026-01-02 14:54:44 +01:00
parent 0b9cb7e7d9
commit a453603b9b
3 changed files with 3 additions and 29 deletions

View File

@@ -99,7 +99,7 @@ namespace IR
{
StringBuilder sb;
sb.AppendIndent(indent);
sb << result()->Format() << " = load " << m_ptr->Format();
sb << result()->Format() << " = load " << result()->GetType()->Format() << ", " << m_ptr->Format();
return sb.view();
}