LLVM API Documentation

MCAsmInfoELF.h
Go to the documentation of this file.
00001 //===-- llvm/MC/MCAsmInfoELF.h - ELF Asm info -------------------*- C++ -*-===//
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 #ifndef LLVM_MC_MCASMINFOELF_H
00011 #define LLVM_MC_MCASMINFOELF_H
00012 
00013 #include "llvm/MC/MCAsmInfo.h"
00014 
00015 namespace llvm {
00016 class MCAsmInfoELF : public MCAsmInfo {
00017   virtual void anchor();
00018 protected:
00019   MCAsmInfoELF();
00020 };
00021 }
00022 
00023 #endif