blob: 35397309a103d9c11527191e965b20239ea276b3 [file] [log] [blame]
Jeffrey Yasskin091217b2010-01-27 20:34:15 +00001//===-- GVMaterializer.cpp - Base implementation for GV materializers -----===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Jeffrey Yasskin091217b2010-01-27 20:34:15 +00006//
7//===----------------------------------------------------------------------===//
8//
9// Minimal implementation of the abstract interface for materializing
10// GlobalValues.
11//
12//===----------------------------------------------------------------------===//
13
Chandler Carruthd1163aa2014-03-06 03:50:29 +000014#include "llvm/IR/GVMaterializer.h"
Jeffrey Yasskin091217b2010-01-27 20:34:15 +000015using namespace llvm;
16
17GVMaterializer::~GVMaterializer() {}