Skip to content

Commit 5de72c7

Browse files
mgehre-amdTinaAMD
andauthored
Update mlir/lib/Dialect/EmitC/IR/EmitC.cpp
Co-authored-by: Tina Jung <[email protected]>
1 parent fdd8663 commit 5de72c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Dialect/EmitC/IR/EmitC.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ bool mlir::emitc::isSupportedFloatType(Type type) {
120120
}
121121

122122
bool mlir::emitc::isFloatOrOpaqueType(Type type) {
123-
return llvm::isa<emitc::OpaqueType>(type) || isSupportedFloatType(type);
123+
return isa<emitc::OpaqueType>(type) || isSupportedFloatType(type);
124124
}
125125

126126
bool mlir::emitc::isPointerWideType(Type type) {

0 commit comments

Comments
 (0)