llvm/llvm/unittests/Analysis/CtxProfAnalysisTest.cpp

//===--- CtxProfAnalysisTest.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 "llvm/Analysis/CtxProfAnalysis.h"
#include "llvm/Analysis/BlockFrequencyInfo.h"
#include "llvm/Analysis/BranchProbabilityInfo.h"
#include "llvm/Analysis/CGSCCPassManager.h"
#include "llvm/Analysis/LoopAnalysisManager.h"
#include "llvm/AsmParser/Parser.h"
#include "llvm/IR/Analysis.h"
#include "llvm/IR/Module.h"
#include "llvm/IR/PassInstrumentation.h"
#include "llvm/IR/PassManager.h"
#include "llvm/Passes/PassBuilder.h"
#include "llvm/Support/SourceMgr.h"
#include "llvm/Transforms/Instrumentation/PGOInstrumentation.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"

usingnamespacellvm;

namespace {

class CtxProfAnalysisTest : public testing::Test {};

TEST_F(CtxProfAnalysisTest, GetCallsiteIDTest) {}

TEST_F(CtxProfAnalysisTest, GetCallsiteIDInlineAsmTest) {}

TEST_F(CtxProfAnalysisTest, GetCallsiteIDNegativeTest) {}

TEST_F(CtxProfAnalysisTest, GetBBIDTest) {}
} // namespace