blob: 15a867ead53e7762ab877274cbc062ccc22fa9de [file] [log] [blame]
Chris Lattneraf76e592009-08-22 20:48:53 +00001//=====-- MipsMCAsmInfo.h - Mips asm properties ---------------*- C++ -*--====//
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00007//
8//===----------------------------------------------------------------------===//
9//
Chris Lattneraf76e592009-08-22 20:48:53 +000010// This file contains the declaration of the MipsMCAsmInfo class.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000011//
12//===----------------------------------------------------------------------===//
13
14#ifndef MIPSTARGETASMINFO_H
15#define MIPSTARGETASMINFO_H
16
Benjamin Kramer38e59892010-07-14 22:38:02 +000017#include "llvm/ADT/StringRef.h"
Chris Lattneraf76e592009-08-22 20:48:53 +000018#include "llvm/MC/MCAsmInfo.h"
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000019
20namespace llvm {
Chris Lattnera7ac47c2009-08-12 07:22:17 +000021 class Target;
Chris Lattnera7ac47c2009-08-12 07:22:17 +000022
Chris Lattneraf76e592009-08-22 20:48:53 +000023 class MipsMCAsmInfo : public MCAsmInfo {
Chris Lattner92319e22009-08-11 20:32:51 +000024 public:
Benjamin Kramer38e59892010-07-14 22:38:02 +000025 explicit MipsMCAsmInfo(const Target &T, StringRef TT);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000026 };
Chris Lattner8eeba352010-01-20 06:34:14 +000027
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000028} // namespace llvm
29
30#endif