LLVM API Documentation

HexagonMCAsmInfo.h
Go to the documentation of this file.
00001 //===-- HexagonTargetAsmInfo.h - Hexagon asm properties --------*- 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 contains the declaration of the HexagonMCAsmInfo class.
00011 //
00012 //===----------------------------------------------------------------------===//
00013 
00014 #ifndef LLVM_LIB_TARGET_HEXAGON_MCTARGETDESC_HEXAGONMCASMINFO_H
00015 #define LLVM_LIB_TARGET_HEXAGON_MCTARGETDESC_HEXAGONMCASMINFO_H
00016 
00017 #include "llvm/ADT/StringRef.h"
00018 #include "llvm/MC/MCAsmInfoELF.h"
00019 
00020 namespace llvm {
00021   class HexagonMCAsmInfo : public MCAsmInfoELF {
00022     void anchor() override;
00023   public:
00024     explicit HexagonMCAsmInfo(StringRef TT);
00025   };
00026 
00027 } // namespace llvm
00028 
00029 #endif