[clang] Add test for CWG190 "Layout-compatible POD-struct types" (#121668)
[llvm-project.git] / llvm / lib / IR / GVMaterializer.cpp
blobdc3b0e0fc2364d48a91a9be80a7e398b324d2108
1 //===-- GVMaterializer.cpp - Base implementation for GV materializers -----===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // Minimal implementation of the abstract interface for materializing
10 // GlobalValues.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/IR/GVMaterializer.h"
15 using namespace llvm;
17 GVMaterializer::~GVMaterializer() = default;