File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
include/mlir/Target/LLVMIR Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -489,8 +489,8 @@ class ModuleImport {
489
489
// / metadata that otherwise dominate the translation time for large inputs.
490
490
bool emitExpensiveWarnings;
491
491
492
- // / An option to control whether to disable supported intrinsic support in
493
- // / favor a more generic version via `llvm.intrinsic_call` .
492
+ // / An option to control whether the importer should try to convert all
493
+ // / intrinsics to llvm.call_intrinsic instead of dialect supported operations .
494
494
bool preferUnregisteredIntrinsics;
495
495
};
496
496
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ void registerFromLLVMIRTranslation() {
40
40
static llvm::cl::opt<bool > preferUnregisteredIntrinsics (
41
41
" prefer-unregistered-intrinsics" ,
42
42
llvm::cl::desc (
43
- " Prefer translation all intrinsics into llvm.call_intrinsic instead "
43
+ " Prefer translating all intrinsics into llvm.call_intrinsic instead "
44
44
" of using dialect supported intrinsics" ),
45
45
llvm::cl::init (false ));
46
46
You can’t perform that action at this time.
0 commit comments