1249259Sdim//==-- AArch64MCAsmInfo.h - AArch64 asm properties -------------*- C++ -*--===//
2249259Sdim//
3249259Sdim//                     The LLVM Compiler Infrastructure
4249259Sdim//
5249259Sdim// This file is distributed under the University of Illinois Open Source
6249259Sdim// License. See LICENSE.TXT for details.
7249259Sdim//
8249259Sdim//===----------------------------------------------------------------------===//
9249259Sdim//
10249259Sdim// This file contains the declaration of the AArch64MCAsmInfo class.
11249259Sdim//
12249259Sdim//===----------------------------------------------------------------------===//
13249259Sdim
14249259Sdim#ifndef LLVM_AARCH64TARGETASMINFO_H
15249259Sdim#define LLVM_AARCH64TARGETASMINFO_H
16249259Sdim
17263508Sdim#include "llvm/MC/MCAsmInfoELF.h"
18249259Sdim
19249259Sdimnamespace llvm {
20249259Sdim
21263508Sdimstruct AArch64ELFMCAsmInfo : public MCAsmInfoELF {
22263508Sdim  explicit AArch64ELFMCAsmInfo();
23263508Sdimprivate:
24263508Sdim  virtual void anchor();
25263508Sdim};
26249259Sdim
27249259Sdim} // namespace llvm
28249259Sdim
29249259Sdim#endif
30