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 fdd8663 commit 5de72c7Copy full SHA for 5de72c7
mlir/lib/Dialect/EmitC/IR/EmitC.cpp
@@ -120,7 +120,7 @@ bool mlir::emitc::isSupportedFloatType(Type type) {
120
}
121
122
bool mlir::emitc::isFloatOrOpaqueType(Type type) {
123
- return llvm::isa<emitc::OpaqueType>(type) || isSupportedFloatType(type);
+ return isa<emitc::OpaqueType>(type) || isSupportedFloatType(type);
124
125
126
bool mlir::emitc::isPointerWideType(Type type) {
0 commit comments