[mlir] Update comments in ArmNeon dialect. NFC

These were not updated when squashing LLVMArmNeon and ArmNeon dialects.
This commit is contained in:
Alex Zinenko 2021-03-10 13:34:43 +01:00
parent 523d7bc6f4
commit 78f3fb4f46
2 changed files with 3 additions and 3 deletions

View File

@ -18,11 +18,11 @@ namespace mlir {
class DialectRegistry;
class MLIRContext;
/// Register the LLVMArmNeon dialect and the translation from it to the LLVM IR
/// Register the ArmNeon dialect and the translation from it to the LLVM IR
/// in the given registry;
void registerArmNeonDialectTranslation(DialectRegistry &registry);
/// Register the LLVMArmNeon dialect and the translation from it in the registry
/// Register the ArmNeon dialect and the translation from it in the registry
/// associated with the given context.
void registerArmNeonDialectTranslation(MLIRContext &context);

View File

@ -24,7 +24,7 @@ using namespace mlir::LLVM;
namespace {
/// Implementation of the dialect interface that converts operations belonging
/// to the LLVMArmNeon dialect to LLVM IR.
/// to the ArmNeon dialect to LLVM IR.
class ArmNeonDialectLLVMIRTranslationInterface
: public LLVMTranslationDialectInterface {
public: