blob: b16d873520ab9808a18abead9c246b830dc15513 [file] [log] [blame]
Gordon Henriksen5a29c9e2008-08-17 12:56:54 +00001//===-- Collector.cpp - Garbage collection infrastructure -----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements target- and collector-independent garbage collection
11// infrastructure.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/CodeGen/GCStrategy.h"
16
17using namespace llvm;
18
19GCMetadataPrinter::GCMetadataPrinter() { }
20
21GCMetadataPrinter::~GCMetadataPrinter() { }
22
23void GCMetadataPrinter::beginAssembly(std::ostream &OS, AsmPrinter &AP,
24 const TargetAsmInfo &TAI) {
25 // Default is no action.
26}
27
28void GCMetadataPrinter::finishAssembly(std::ostream &OS, AsmPrinter &AP,
29 const TargetAsmInfo &TAI) {
30 // Default is no action.
31}