Skip to content

[mlir][Transforms] OneToNTypeConversion.cpp: Fix invalid IR #77922

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions mlir/lib/Transforms/Utils/OneToNTypeConversion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,11 @@ static const char *const castKindAttrName =
/// result types. Returns the result values of the cast.
static ValueRange buildUnrealizedCast(OpBuilder &builder, TypeRange resultTypes,
ValueRange inputs, CastKind kind) {
// Special case: 1-to-N conversion with N = 0. No need to build an
// UnrealizedConversionCastOp because the op will always be dead.
if (resultTypes.empty())
return ValueRange();

// Create cast.
Location loc = builder.getUnknownLoc();
if (!inputs.empty())
Expand Down