//===- TileTypeConversionTest.cpp - Tests ArmSME tile type conversion -----===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "mlir/Conversion/ArmSMEToLLVM/ArmSMEToLLVM.h" #include "mlir/Conversion/LLVMCommon/ConversionTarget.h" #include "mlir/Conversion/LLVMCommon/Pattern.h" #include "mlir/Conversion/LLVMCommon/TypeConverter.h" #include "mlir/Dialect/ArmSME/IR/ArmSME.h" #include "gtest/gtest.h" usingnamespacemlir; class ArmSMETest : public ::testing::Test { … }; TEST_F(ArmSMETest, TestTileTypeConversion) { … }