SparcMCAsmInfo.h revision 224133
1224133Sdim//=====-- SparcMCAsmInfo.h - Sparc asm properties -------------*- C++ -*--====//
2224133Sdim//
3224133Sdim//                     The LLVM Compiler Infrastructure
4224133Sdim//
5224133Sdim// This file is distributed under the University of Illinois Open Source
6224133Sdim// License. See LICENSE.TXT for details.
7224133Sdim//
8224133Sdim//===----------------------------------------------------------------------===//
9224133Sdim//
10224133Sdim// This file contains the declaration of the SparcMCAsmInfo class.
11224133Sdim//
12224133Sdim//===----------------------------------------------------------------------===//
13224133Sdim
14224133Sdim#ifndef SPARCTARGETASMINFO_H
15224133Sdim#define SPARCTARGETASMINFO_H
16224133Sdim
17224133Sdim#include "llvm/ADT/StringRef.h"
18224133Sdim#include "llvm/MC/MCAsmInfo.h"
19224133Sdim
20224133Sdimnamespace llvm {
21224133Sdim  class Target;
22224133Sdim
23224133Sdim  struct SparcELFMCAsmInfo : public MCAsmInfo {
24224133Sdim    explicit SparcELFMCAsmInfo(const Target &T, StringRef TT);
25224133Sdim  };
26224133Sdim
27224133Sdim} // namespace llvm
28224133Sdim
29224133Sdim#endif
30