"llvm/lib/git@repo.hca.bsc.es:rferrer/llvm-epi-0.8.git" did not exist on "44124236f5e47a4ce2c5c6d13afe8ece49fc827c"
Newer
Older
//===-- GCMetadataPrinter.cpp - Garbage collection infrastructure ---------===//
Gordon Henriksen
committed
//
// 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.
Gordon Henriksen
committed
//
//===----------------------------------------------------------------------===//
#include "llvm/CodeGen/GCMetadataPrinter.h"
Gordon Henriksen
committed
using namespace llvm;
GCMetadataPrinter::GCMetadataPrinter() { }
GCMetadataPrinter::~GCMetadataPrinter() { }
void GCMetadataPrinter::beginAssembly(AsmPrinter &AP) {
Gordon Henriksen
committed
// Default is no action.
}
void GCMetadataPrinter::finishAssembly(AsmPrinter &AP) {
Gordon Henriksen
committed
// Default is no action.
}