"llvm/git@repo.hca.bsc.es:rferrer/llvm-epi-0.8.git" did not exist on "d8042b7bd73711857f99c63b0cf6d0aa75220fa1"
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.
}