2009-08-22 22:48:53 +02:00
|
|
|
//=====-- MipsMCAsmInfo.h - Mips asm properties ---------------*- C++ -*--====//
|
2007-06-06 09:42:06 +02:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-06-06 09:42:06 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-08-22 22:48:53 +02:00
|
|
|
// This file contains the declaration of the MipsMCAsmInfo class.
|
2007-06-06 09:42:06 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef MIPSTARGETASMINFO_H
|
|
|
|
#define MIPSTARGETASMINFO_H
|
|
|
|
|
2010-07-15 00:38:02 +02:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2009-08-22 22:48:53 +02:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2007-06-06 09:42:06 +02:00
|
|
|
|
|
|
|
namespace llvm {
|
2009-08-12 09:22:17 +02:00
|
|
|
class Target;
|
|
|
|
|
2009-08-22 22:48:53 +02:00
|
|
|
class MipsMCAsmInfo : public MCAsmInfo {
|
2009-08-11 22:32:51 +02:00
|
|
|
public:
|
2010-07-15 00:38:02 +02:00
|
|
|
explicit MipsMCAsmInfo(const Target &T, StringRef TT);
|
2007-06-06 09:42:06 +02:00
|
|
|
};
|
2010-01-20 07:34:14 +01:00
|
|
|
|
2007-06-06 09:42:06 +02:00
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|