llvm/clang/unittests/Frontend/CodeGenActionTest.cpp

//===- unittests/Frontend/CodeGenActionTest.cpp --- FrontendAction 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
//
//===----------------------------------------------------------------------===//
//
// Unit tests for CodeGenAction.
//
//===----------------------------------------------------------------------===//

#include "clang/CodeGen/CodeGenAction.h"
#include "clang/Basic/LangStandard.h"
#include "clang/CodeGen/BackendUtil.h"
#include "clang/Frontend/CompilerInstance.h"
#include "clang/Lex/PreprocessorOptions.h"
#include "llvm/Support/FormatVariadic.h"
#include "gtest/gtest.h"

usingnamespacellvm;
usingnamespaceclang;
usingnamespaceclang::frontend;

namespace {


class NullCodeGenAction : public CodeGenAction {};


TEST(CodeGenTest, TestNullCodeGen) {}

TEST(CodeGenTest, CodeGenFromIRMemBuffer) {}

TEST(CodeGenTest, DebugInfoCWDCodeGen) {}
}