LLVM API Documentation
00001 //===-- AArch64ELFStreamer.h - ELF Streamer for AArch64 ---------*- 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 implements ELF streamer information for the AArch64 backend. 00011 // 00012 //===----------------------------------------------------------------------===// 00013 00014 #ifndef LLVM_LIB_TARGET_AARCH64_MCTARGETDESC_AARCH64ELFSTREAMER_H 00015 #define LLVM_LIB_TARGET_AARCH64_MCTARGETDESC_AARCH64ELFSTREAMER_H 00016 00017 #include "llvm/MC/MCELFStreamer.h" 00018 00019 namespace llvm { 00020 00021 MCELFStreamer *createAArch64ELFStreamer(MCContext &Context, MCAsmBackend &TAB, 00022 raw_ostream &OS, MCCodeEmitter *Emitter, 00023 bool RelaxAll, bool NoExecStack); 00024 } 00025 00026 #endif