Skip to content

Commit 201ff57

Browse files
committed
Address review
1 parent 1e76250 commit 201ff57

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

mlir/include/mlir/Target/LLVMIR/ModuleImport.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -489,8 +489,8 @@ class ModuleImport {
489489
/// metadata that otherwise dominate the translation time for large inputs.
490490
bool emitExpensiveWarnings;
491491

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.
494494
bool preferUnregisteredIntrinsics;
495495
};
496496

mlir/lib/Target/LLVMIR/ConvertFromLLVMIR.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ void registerFromLLVMIRTranslation() {
4040
static llvm::cl::opt<bool> preferUnregisteredIntrinsics(
4141
"prefer-unregistered-intrinsics",
4242
llvm::cl::desc(
43-
"Prefer translation all intrinsics into llvm.call_intrinsic instead "
43+
"Prefer translating all intrinsics into llvm.call_intrinsic instead "
4444
"of using dialect supported intrinsics"),
4545
llvm::cl::init(false));
4646

0 commit comments

Comments
 (0)