LLVM API Documentation
00001 //=====-- AArch64MCAsmInfo.h - AArch64 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 AArch64MCAsmInfo class. 00011 // 00012 //===----------------------------------------------------------------------===// 00013 00014 #ifndef LLVM_LIB_TARGET_AARCH64_MCTARGETDESC_AARCH64MCASMINFO_H 00015 #define LLVM_LIB_TARGET_AARCH64_MCTARGETDESC_AARCH64MCASMINFO_H 00016 00017 #include "llvm/MC/MCAsmInfoDarwin.h" 00018 00019 namespace llvm { 00020 class Target; 00021 class StringRef; 00022 class MCStreamer; 00023 struct AArch64MCAsmInfoDarwin : public MCAsmInfoDarwin { 00024 explicit AArch64MCAsmInfoDarwin(); 00025 const MCExpr * 00026 getExprForPersonalitySymbol(const MCSymbol *Sym, unsigned Encoding, 00027 MCStreamer &Streamer) const override; 00028 }; 00029 00030 struct AArch64MCAsmInfoELF : public MCAsmInfo { 00031 explicit AArch64MCAsmInfoELF(StringRef TT); 00032 }; 00033 00034 } // namespace llvm 00035 00036 #endif