Skip to content

Commit

Permalink
fix json backend for vectype
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugobros3 committed Jul 4, 2024
1 parent b923619 commit 07bd710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/thorin/be/json/json.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class TypeTable {
break;
}
} else if (auto vectype = type->isa<VectorType>()) {
result["type"] = "ptr";
result["type"] = "vectype";
result["scalar"] = translate_type(vectype->scalarize());
result["length"] = vectype->length();
} else {
Expand Down

0 comments on commit 07bd710

Please sign in to comment.