llvm/llvm/unittests/Analysis/ValueLatticeTest.cpp

//===- ValueLatticeTest.cpp - ScalarEvolution unit tests --------------===//
//
// 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 "llvm/Analysis/ValueLattice.h"
#include "llvm/IR/ConstantRange.h"
#include "llvm/IR/Constants.h"
#include "llvm/IR/IRBuilder.h"
#include "llvm/IR/LLVMContext.h"
#include "llvm/IR/Module.h"
#include "gtest/gtest.h"

namespace llvm {
namespace {

// We use this fixture to ensure that we clean up ScalarEvolution before
// deleting the PassManager.
class ValueLatticeTest : public testing::Test {};

TEST_F(ValueLatticeTest, ValueLatticeGetters) {}

TEST_F(ValueLatticeTest, MarkConstantRange) {}

TEST_F(ValueLatticeTest, MergeIn) {}

TEST_F(ValueLatticeTest, getCompareIntegers) {}

TEST_F(ValueLatticeTest, getCompareFloat) {}

TEST_F(ValueLatticeTest, getCompareUndef) {}

} // end anonymous namespace
} // end namespace llvm