freebsd-dev/lib/IR/GVMaterializer.cpp

19 lines
612 B
C++
Raw Normal View History

2010-02-16 09:30:23 +00: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.
//
//===----------------------------------------------------------------------===//
#include "llvm/IR/GVMaterializer.h"
2010-02-16 09:30:23 +00:00
using namespace llvm;
GVMaterializer::~GVMaterializer() {}