llvm/llvm/unittests/IR/ConstantRangeListTest.cpp

//===- ConstantRangeListTest.cpp - ConstantRangeList 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/IR/ConstantRangeList.h"
#include "gtest/gtest.h"

usingnamespacellvm;

namespace {

ConstantRangeListTest;

TEST_F(ConstantRangeListTest, Basics) {}

TEST_F(ConstantRangeListTest, getConstantRangeList) {}

TEST_F(ConstantRangeListTest, Insert) {}

ConstantRangeList GetCRL(ArrayRef<std::pair<APInt, APInt>> Pairs) {}

TEST_F(ConstantRangeListTest, Subtract) {}

TEST_F(ConstantRangeListTest, Union) {}

TEST_F(ConstantRangeListTest, Intersect) {}

} // anonymous namespace