1249259Sdim//===-- GVMaterializer.cpp - Base implementation for GV materializers -----===//
2249259Sdim//
3353358Sdim// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4353358Sdim// See https://llvm.org/LICENSE.txt for license information.
5353358Sdim// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6249259Sdim//
7249259Sdim//===----------------------------------------------------------------------===//
8249259Sdim//
9249259Sdim// Minimal implementation of the abstract interface for materializing
10249259Sdim// GlobalValues.
11249259Sdim//
12249259Sdim//===----------------------------------------------------------------------===//
13249259Sdim
14276479Sdim#include "llvm/IR/GVMaterializer.h"
15249259Sdimusing namespace llvm;
16249259Sdim
17249259SdimGVMaterializer::~GVMaterializer() {}
18