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