mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
in llvm/ and/or llvm/contrib/clang/ respectively. Approved by: ed (mentor) Approved by: core
18 lines
609 B
C++
18 lines
609 B
C++
//===-- 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/GVMaterializer.h"
|
|
using namespace llvm;
|
|
|
|
GVMaterializer::~GVMaterializer() {}
|