2008-08-17 20:44:35 +02:00
|
|
|
//===-- GCMetadataPrinter.cpp - Garbage collection infrastructure ---------===//
|
2008-08-17 14:56:54 +02:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2008-08-17 20:44:35 +02:00
|
|
|
// This file implements the abstract base class GCMetadataPrinter.
|
2008-08-17 14:56:54 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-08-17 20:44:35 +02:00
|
|
|
#include "llvm/CodeGen/GCMetadataPrinter.h"
|
2008-08-17 14:56:54 +02:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
GCMetadataPrinter::GCMetadataPrinter() { }
|
|
|
|
|
|
|
|
GCMetadataPrinter::~GCMetadataPrinter() { }
|
|
|
|
|
2008-08-21 02:14:44 +02:00
|
|
|
void GCMetadataPrinter::beginAssembly(raw_ostream &OS, AsmPrinter &AP,
|
2009-08-22 23:43:10 +02:00
|
|
|
const MCAsmInfo &MAI) {
|
2008-08-17 14:56:54 +02:00
|
|
|
// Default is no action.
|
|
|
|
}
|
|
|
|
|
2008-08-21 02:14:44 +02:00
|
|
|
void GCMetadataPrinter::finishAssembly(raw_ostream &OS, AsmPrinter &AP,
|
2009-08-22 23:43:10 +02:00
|
|
|
const MCAsmInfo &MAI) {
|
2008-08-17 14:56:54 +02:00
|
|
|
// Default is no action.
|
|
|
|
}
|