blob: 706926d1b9818d0cd1f9eaac24481929a81477ec [file] [log] [blame]
Jeffrey Yasskin091217b2010-01-27 20:34:15 +00001//===-- GVMaterializer.cpp - Base implementation for GV materializers -----===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// Minimal implementation of the abstract interface for materializing
11// GlobalValues.
12//
13//===----------------------------------------------------------------------===//
14
Chandler Carruthd1163aa2014-03-06 03:50:29 +000015#include "llvm/IR/GVMaterializer.h"
Jeffrey Yasskin091217b2010-01-27 20:34:15 +000016using namespace llvm;
17
18GVMaterializer::~GVMaterializer() {}