1235633Sdim//===-- MipsMCAsmInfo.h - Mips Asm Info ------------------------*- 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 MipsMCAsmInfo class.
11224133Sdim//
12224133Sdim//===----------------------------------------------------------------------===//
13224133Sdim
14224133Sdim#ifndef MIPSTARGETASMINFO_H
15224133Sdim#define MIPSTARGETASMINFO_H
16224133Sdim
17263509Sdim#include "llvm/MC/MCAsmInfoELF.h"
18224133Sdim
19224133Sdimnamespace llvm {
20235633Sdim  class StringRef;
21224133Sdim
22263509Sdim  class MipsMCAsmInfo : public MCAsmInfoELF {
23235633Sdim    virtual void anchor();
24224133Sdim  public:
25263509Sdim    explicit MipsMCAsmInfo(StringRef TT);
26224133Sdim  };
27224133Sdim
28224133Sdim} // namespace llvm
29224133Sdim
30224133Sdim#endif
31