xref: /freebsd/contrib/llvm-project/llvm/lib/IR/GVMaterializer.cpp (revision 81ad626541db97eb356e2c1d4a20eb2a26a766ab)
10b57cec5SDimitry Andric //===-- GVMaterializer.cpp - Base implementation for GV materializers -----===//
20b57cec5SDimitry Andric //
30b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
40b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
50b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
60b57cec5SDimitry Andric //
70b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
80b57cec5SDimitry Andric //
90b57cec5SDimitry Andric // Minimal implementation of the abstract interface for materializing
100b57cec5SDimitry Andric // GlobalValues.
110b57cec5SDimitry Andric //
120b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
130b57cec5SDimitry Andric 
140b57cec5SDimitry Andric #include "llvm/IR/GVMaterializer.h"
150b57cec5SDimitry Andric using namespace llvm;
160b57cec5SDimitry Andric 
17*81ad6265SDimitry Andric GVMaterializer::~GVMaterializer() = default;
18