2012-02-17 16:55:11 +08:00
|
|
|
//===-- MipsMCAsmInfo.h - Mips Asm Info ------------------------*- C++ -*--===//
|
2007-06-06 15:42:06 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-06-06 15:42:06 +08:00
|
|
|
//
|
2011-04-16 05:51:11 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-06-06 15:42:06 +08:00
|
|
|
//
|
2009-08-23 04:48:53 +08:00
|
|
|
// This file contains the declaration of the MipsMCAsmInfo class.
|
2007-06-06 15:42:06 +08:00
|
|
|
//
|
2011-04-16 05:51:11 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-06-06 15:42:06 +08:00
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_MIPS_MCTARGETDESC_MIPSMCASMINFO_H
|
|
|
|
#define LLVM_LIB_TARGET_MIPS_MCTARGETDESC_MIPSMCASMINFO_H
|
2007-06-06 15:42:06 +08:00
|
|
|
|
2013-10-16 09:34:32 +08:00
|
|
|
#include "llvm/MC/MCAsmInfoELF.h"
|
2007-06-06 15:42:06 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
2015-06-04 21:12:25 +08:00
|
|
|
class Triple;
|
2011-03-05 01:51:39 +08:00
|
|
|
|
2013-10-16 09:34:32 +08:00
|
|
|
class MipsMCAsmInfo : public MCAsmInfoELF {
|
2014-04-29 15:58:02 +08:00
|
|
|
void anchor() override;
|
2009-08-12 04:32:51 +08:00
|
|
|
public:
|
2015-06-04 21:12:25 +08:00
|
|
|
explicit MipsMCAsmInfo(const Triple &TheTriple);
|
2007-06-06 15:42:06 +08:00
|
|
|
};
|
2010-01-20 14:34:14 +08:00
|
|
|
|
2007-06-06 15:42:06 +08:00
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|