llvm/llvm/unittests/Support/BlockFrequencyTest.cpp

//===- unittests/Support/BlockFrequencyTest.cpp - BlockFrequency 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/Support/BlockFrequency.h"
#include "llvm/Support/BranchProbability.h"
#include "llvm/Support/DataTypes.h"
#include "gtest/gtest.h"
#include <climits>
#include <cstdint>

usingnamespacellvm;

namespace {

TEST(BlockFrequencyTest, OneToZero) {}

TEST(BlockFrequencyTest, OneToOne) {}

TEST(BlockFrequencyTest, ThreeToOne) {}

TEST(BlockFrequencyTest, MaxToHalfMax) {}

TEST(BlockFrequencyTest, BigToBig) {}

TEST(BlockFrequencyTest, MaxToMax) {}

TEST(BlockFrequencyTest, Subtract) {}

TEST(BlockFrequency, Divide) {}

TEST(BlockFrequencyTest, Saturate) {}

TEST(BlockFrequencyTest, SaturatingRightShift) {}

}