"README.md" did not exist on "ee4dab5f1f7a0c32167b8b91c5733e77d4d88dcc"
Newer
Older
//=====-- MipsMCAsmInfo.h - Mips Asm Info ---------------------*- C++ -*--====//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
Akira Hatanaka
committed
//===----------------------------------------------------------------------===//
// This file contains the declaration of the MipsMCAsmInfo class.
Akira Hatanaka
committed
//===----------------------------------------------------------------------===//
#ifndef MIPSTARGETASMINFO_H
#define MIPSTARGETASMINFO_H
#include "llvm/MC/MCAsmInfo.h"
Chris Lattner
committed
class Target;
Bruno Cardoso Lopes
committed
class MipsMCAsmInfo : public MCAsmInfo {
David Blaikie
committed
virtual void anchor();
public:
explicit MipsMCAsmInfo(const Target &T, StringRef TT);
} // namespace llvm
#endif