X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FCodeGen%2FGCMetadataPrinter.cpp;h=f80e9ced0bc90e213c17106e6d9a552c0ca66f39;hb=bcb8c6d09ee426e0f774e3412912f6ae9e5f78dd;hp=b16d873520ab9808a18abead9c246b830dc15513;hpb=5a29c9eed157af51a8d338b5a225b146881819e8;p=oota-llvm.git diff --git a/lib/CodeGen/GCMetadataPrinter.cpp b/lib/CodeGen/GCMetadataPrinter.cpp index b16d873520a..f80e9ced0bc 100644 --- a/lib/CodeGen/GCMetadataPrinter.cpp +++ b/lib/CodeGen/GCMetadataPrinter.cpp @@ -1,4 +1,4 @@ -//===-- Collector.cpp - Garbage collection infrastructure -----------------===// +//===-- GCMetadataPrinter.cpp - Garbage collection infrastructure ---------===// // // The LLVM Compiler Infrastructure // @@ -7,25 +7,21 @@ // //===----------------------------------------------------------------------===// // -// This file implements target- and collector-independent garbage collection -// infrastructure. +// This file implements the abstract base class GCMetadataPrinter. // //===----------------------------------------------------------------------===// -#include "llvm/CodeGen/GCStrategy.h" - +#include "llvm/CodeGen/GCMetadataPrinter.h" using namespace llvm; GCMetadataPrinter::GCMetadataPrinter() { } GCMetadataPrinter::~GCMetadataPrinter() { } -void GCMetadataPrinter::beginAssembly(std::ostream &OS, AsmPrinter &AP, - const TargetAsmInfo &TAI) { +void GCMetadataPrinter::beginAssembly(AsmPrinter &AP) { // Default is no action. } -void GCMetadataPrinter::finishAssembly(std::ostream &OS, AsmPrinter &AP, - const TargetAsmInfo &TAI) { +void GCMetadataPrinter::finishAssembly(AsmPrinter &AP) { // Default is no action. }