llvm/mlir/unittests/IR/SymbolTableTest.cpp

//===- SymbolTableTest.cpp - SymbolTable 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 "mlir/IR/SymbolTable.h"
#include "mlir/IR/BuiltinOps.h"
#include "mlir/IR/Verifier.h"
#include "mlir/Interfaces/CallInterfaces.h"
#include "mlir/Interfaces/FunctionInterfaces.h"
#include "mlir/Parser/Parser.h"

#include "gtest/gtest.h"

usingnamespacemlir;

namespace test {
void registerTestDialect(DialectRegistry &);
} // namespace test

class ReplaceAllSymbolUsesTest : public ::testing::Test {};

namespace {

TEST_F(ReplaceAllSymbolUsesTest, OperationInModuleOp) {}

TEST_F(ReplaceAllSymbolUsesTest, StringAttrInModuleOp) {}

TEST_F(ReplaceAllSymbolUsesTest, OperationInModuleBody) {}

TEST_F(ReplaceAllSymbolUsesTest, StringAttrInModuleBody) {}

TEST_F(ReplaceAllSymbolUsesTest, OperationInFuncOp) {}

TEST_F(ReplaceAllSymbolUsesTest, StringAttrInFuncOp) {}

} // namespace