2013-01-31 20:12:40 +08:00
|
|
|
//==-- AArch64MCAsmInfo.h - AArch64 asm properties -------------*- C++ -*--===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the declaration of the AArch64MCAsmInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_AARCH64TARGETASMINFO_H
|
|
|
|
#define LLVM_AARCH64TARGETASMINFO_H
|
|
|
|
|
2013-10-16 09:34:32 +08:00
|
|
|
#include "llvm/MC/MCAsmInfoELF.h"
|
2013-01-31 20:12:40 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2013-11-19 08:57:56 +08:00
|
|
|
struct AArch64ELFMCAsmInfo : public MCAsmInfoELF {
|
2014-02-24 19:34:50 +08:00
|
|
|
explicit AArch64ELFMCAsmInfo(StringRef TT);
|
2013-11-19 08:57:56 +08:00
|
|
|
private:
|
|
|
|
virtual void anchor();
|
|
|
|
};
|
2013-01-31 20:12:40 +08:00
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|