//===- CSETest.cpp -----------------------------------------------===// // // 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 "GISelMITest.h" #include "llvm/CodeGen/GlobalISel/CSEInfo.h" #include "llvm/CodeGen/GlobalISel/CSEMIRBuilder.h" #include "gtest/gtest.h" namespace { TEST_F(AArch64GISelMITest, TestCSE) { … } TEST_F(AArch64GISelMITest, TestCSEConstantConfig) { … } TEST_F(AArch64GISelMITest, TestCSEImmediateNextCSE) { … } TEST_F(AArch64GISelMITest, TestConstantFoldCTL) { … } TEST_F(AArch64GISelMITest, TestConstantFoldCTT) { … } TEST_F(AArch64GISelMITest, TestConstantFoldICMP) { … } } // namespace