2014-05-24 12:50:23 +00:00
|
|
|
//===-- AArch64ELFStreamer.h - ELF Streamer for AArch64 ---------*- C++ -*-===//
|
2014-03-29 10:18:08 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2014-05-24 12:50:23 +00:00
|
|
|
// This file implements ELF streamer information for the AArch64 backend.
|
2014-03-29 10:18:08 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_TARGET_AARCH64_MCTARGETDESC_AARCH64ELFSTREAMER_H
|
|
|
|
#define LLVM_LIB_TARGET_AARCH64_MCTARGETDESC_AARCH64ELFSTREAMER_H
|
2014-03-29 10:18:08 +00:00
|
|
|
|
|
|
|
#include "llvm/MC/MCELFStreamer.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2014-05-24 12:50:23 +00:00
|
|
|
MCELFStreamer *createAArch64ELFStreamer(MCContext &Context, MCAsmBackend &TAB,
|
|
|
|
raw_ostream &OS, MCCodeEmitter *Emitter,
|
2014-10-15 16:12:52 +00:00
|
|
|
bool RelaxAll);
|
2014-03-29 10:18:08 +00:00
|
|
|
}
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#endif
|