LLVM API Documentation

PPCMCAsmInfo.h
Go to the documentation of this file.
00001 //===-- PPCMCAsmInfo.h - PPC asm properties --------------------*- 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 // This file contains the declaration of the MCAsmInfoDarwin class.
00011 //
00012 //===----------------------------------------------------------------------===//
00013 
00014 #ifndef LLVM_LIB_TARGET_POWERPC_MCTARGETDESC_PPCMCASMINFO_H
00015 #define LLVM_LIB_TARGET_POWERPC_MCTARGETDESC_PPCMCASMINFO_H
00016 
00017 #include "llvm/MC/MCAsmInfoDarwin.h"
00018 #include "llvm/MC/MCAsmInfoELF.h"
00019 
00020 namespace llvm {
00021 class Triple;
00022 
00023   class PPCMCAsmInfoDarwin : public MCAsmInfoDarwin {
00024     void anchor() override;
00025   public:
00026     explicit PPCMCAsmInfoDarwin(bool is64Bit, const Triple&);
00027   };
00028 
00029   class PPCELFMCAsmInfo : public MCAsmInfoELF {
00030     void anchor() override;
00031   public:
00032     explicit PPCELFMCAsmInfo(bool is64Bit, const Triple&);
00033   };
00034 
00035 } // namespace llvm
00036 
00037 #endif