2012-02-18 20:03:15 +08:00
|
|
|
//===-- HexagonTargetAsmInfo.h - Hexagon asm properties --------*- C++ -*--===//
|
2011-12-13 05:14:40 +08: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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef HexagonMCASMINFO_H
|
|
|
|
#define HexagonMCASMINFO_H
|
|
|
|
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class HexagonMCAsmInfo : public MCAsmInfo {
|
|
|
|
public:
|
2013-05-11 02:16:59 +08:00
|
|
|
explicit HexagonMCAsmInfo(StringRef TT);
|
2011-12-13 05:14:40 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|