improve tostring

This commit is contained in:
Matthew Kennedy 2024-05-02 22:50:37 -07:00
parent ff15a5a3b6
commit da3cf18645
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ public class ScalarLayout extends Layout {
@Override
public String toString() {
return "Scalar " + type.cType + " " + super.toString();
return "Scalar " + type.cType + " " + name + " " + super.toString();
}
public String makeScaleString() {