llvm/llvm/unittests/Analysis/TBAATest.cpp

//===--- TBAATest.cpp - Mixed TBAA 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/IR/Constants.h"
#include "llvm/IR/Instructions.h"
#include "llvm/IR/LLVMContext.h"
#include "llvm/IR/MDBuilder.h"
#include "llvm/IR/Module.h"
#include "llvm/IR/Verifier.h"
#include "llvm/Support/CommandLine.h"
#include "gtest/gtest.h"

namespace llvm {
namespace {

class TBAATest : public testing::Test {};

static StoreInst *getFunctionWithSingleStore(Module *M, StringRef Name) {}

TEST_F(TBAATest, checkVerifierBehaviorForOldTBAA) {}

TEST_F(TBAATest, checkTBAAMerging) {}

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