Skip to content

Commit 07bd710

Browse files
committed
fix json backend for vectype
1 parent b923619 commit 07bd710

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/thorin/be/json/json.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ class TypeTable {
152152
break;
153153
}
154154
} else if (auto vectype = type->isa<VectorType>()) {
155-
result["type"] = "ptr";
155+
result["type"] = "vectype";
156156
result["scalar"] = translate_type(vectype->scalarize());
157157
result["length"] = vectype->length();
158158
} else {

0 commit comments

Comments
 (0)