llvm/llvm/unittests/SandboxIR/PassTest.cpp

//===- PassTest.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/SandboxIR/Pass.h"
#include "llvm/AsmParser/Parser.h"
#include "llvm/IR/Module.h"
#include "llvm/SandboxIR/Constant.h"
#include "llvm/SandboxIR/Context.h"
#include "llvm/SandboxIR/Function.h"
#include "llvm/SandboxIR/PassManager.h"
#include "llvm/Support/SourceMgr.h"
#include "gtest/gtest.h"

usingnamespacellvm::sandboxir;

struct PassTest : public testing::Test {};

TEST_F(PassTest, FunctionPass) {}

TEST_F(PassTest, FunctionPassManager) {}

TEST_F(PassTest, PassRegistry) {}

TEST_F(PassTest, ParsePassPipeline) {}