LLVM API Documentation
00001 //===-- GCMetadataPrinter.cpp - Garbage collection infrastructure ---------===// 00002 // 00003 // The LLVM Compiler Infrastructure 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 // 00010 // This file implements the abstract base class GCMetadataPrinter. 00011 // 00012 //===----------------------------------------------------------------------===// 00013 00014 #include "llvm/CodeGen/GCMetadataPrinter.h" 00015 using namespace llvm; 00016 00017 GCMetadataPrinter::GCMetadataPrinter() { } 00018 00019 GCMetadataPrinter::~GCMetadataPrinter() { } 00020 00021 void GCMetadataPrinter::beginAssembly(AsmPrinter &AP) { 00022 // Default is no action. 00023 } 00024 00025 void GCMetadataPrinter::finishAssembly(AsmPrinter &AP) { 00026 // Default is no action. 00027 }