[Mlir-commits] [mlir] [MLIR][LLVMIR] Import: add flag to prefer using unregistered intrinsics (PR #130685)
Tobias Gysi
llvmlistbot at llvm.org
Fri Mar 14 00:24:40 PDT 2025
================
@@ -474,6 +481,10 @@ class ModuleImport {
/// emitted. Avoids generating warnings for unhandled debug intrinsics and
/// metadata that otherwise dominate the translation time for large inputs.
bool emitExpensiveWarnings;
+
+ /// An option to control whether to disable supported intrinsic support in
+ /// favor a more generic version via `llvm.intrinsic_call`.
----------------
gysit wrote:
```suggestion
/// An option to control whether the importer should try to convert all intrinsics to
/// llvm.call_intrinsic instead of dialect supported operations.
```
nit I prefer the comment from the function.
https://github.com/llvm/llvm-project/pull/130685
More information about the Mlir-commits
mailing list