2010-01-27 21:34:15 +01:00
|
|
|
//===-- GVMaterializer.cpp - Base implementation for GV materializers -----===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Minimal implementation of the abstract interface for materializing
|
|
|
|
// GlobalValues.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-03-06 04:50:29 +01:00
|
|
|
#include "llvm/IR/GVMaterializer.h"
|
2010-01-27 21:34:15 +01:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
GVMaterializer::~GVMaterializer() {}
|