freebsd-dev/lib/CodeGen/GCMetadataPrinter.cpp

28 lines
824 B
C++
Raw Normal View History

2009-06-02 17:52:33 +00:00
//===-- GCMetadataPrinter.cpp - Garbage collection infrastructure ---------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file implements the abstract base class GCMetadataPrinter.
//
//===----------------------------------------------------------------------===//
#include "llvm/CodeGen/GCMetadataPrinter.h"
using namespace llvm;
GCMetadataPrinter::GCMetadataPrinter() { }
GCMetadataPrinter::~GCMetadataPrinter() { }
2010-04-06 15:52:58 +00:00
void GCMetadataPrinter::beginAssembly(AsmPrinter &AP) {
2009-06-02 17:52:33 +00:00
// Default is no action.
}
2010-04-06 15:52:58 +00:00
void GCMetadataPrinter::finishAssembly(AsmPrinter &AP) {
2009-06-02 17:52:33 +00:00
// Default is no action.
}