2012-02-18 12:03:15 +00:00
|
|
|
//===-- HexagonTargetAsmInfo.h - Hexagon asm properties --------*- C++ -*--===//
|
2011-12-12 21:14:40 +00:00
|
|
|
//
|
|
|
|
// 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 HexagonMCAsmInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_TARGET_HEXAGON_MCTARGETDESC_HEXAGONMCASMINFO_H
|
|
|
|
#define LLVM_LIB_TARGET_HEXAGON_MCTARGETDESC_HEXAGONMCASMINFO_H
|
2011-12-12 21:14:40 +00:00
|
|
|
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
2013-10-16 01:34:32 +00:00
|
|
|
#include "llvm/MC/MCAsmInfoELF.h"
|
2011-12-12 21:14:40 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2013-10-16 01:34:32 +00:00
|
|
|
class HexagonMCAsmInfo : public MCAsmInfoELF {
|
2014-04-29 07:58:16 +00:00
|
|
|
void anchor() override;
|
2011-12-12 21:14:40 +00:00
|
|
|
public:
|
2013-05-10 18:16:59 +00:00
|
|
|
explicit HexagonMCAsmInfo(StringRef TT);
|
2011-12-12 21:14:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|