We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0aab7aa commit 3c34aa3Copy full SHA for 3c34aa3
mlir/lib/Dialect/EmitC/Transforms/FormExpressions.cpp
@@ -38,8 +38,7 @@ struct FormExpressionsPass
38
auto matchFun = [&](Operation *op) {
39
if (op->hasTrait<OpTrait::emitc::CExpression>() &&
40
!op->getParentOfType<emitc::ExpressionOp>() &&
41
- op->getNumResults() == 1 &&
42
- isSupportedEmitCType(op->getResult(0).getType()))
+ op->getNumResults() == 1)
43
createExpression(op, builder);
44
};
45
rootOp->walk(matchFun);
0 commit comments