llvm/llvm/unittests/IR/StructuralHashTest.cpp

//===- llvm/unittest/IR/StructuralHashTest.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/IR/StructuralHash.h"
#include "llvm/AsmParser/Parser.h"
#include "llvm/IR/Module.h"
#include "llvm/Support/SourceMgr.h"
#include "gtest/gtest.h"

#include <memory>

usingnamespacellvm;

namespace {

std::unique_ptr<Module> parseIR(LLVMContext &Context, const char *IR) {}

TEST(StructuralHashTest, Empty) {}

TEST(StructuralHashTest, Basic) {}

TEST(StructuralHashTest, BasicFunction) {}

TEST(StructuralHashTest, Declaration) {}

TEST(StructuralHashTest, GlobalType) {}

TEST(StructuralHashTest, Function) {}

TEST(StructuralHashTest, FunctionRetType) {}

TEST(StructuralHashTest, InstructionOpCode) {}

TEST(StructuralHashTest, InstructionSubType) {}

TEST(StructuralHashTest, InstructionType) {}

TEST(StructuralHashTest, IgnoredMetadata) {}

TEST(StructuralHashTest, ComparisonInstructionPredicate) {}

TEST(StructuralHashTest, IntrinsicInstruction) {}

TEST(StructuralHashTest, CallInstruction) {}

TEST(StructuralHashTest, ConstantInteger) {}

TEST(StructuralHashTest, BigConstantInteger) {}

TEST(StructuralHashTest, ArgumentNumber) {}
} // end anonymous namespace