2012-02-17 16:55:11 +08:00
|
|
|
//===-- MipsMCAsmInfo.h - Mips Asm Info ------------------------*- C++ -*--===//
|
2007-06-06 15:42:06 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
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-09-16 00:17:27 +08:00
|
|
|
class Triple;
|
2011-03-05 01:51:39 +08:00
|
|
|
|
2015-09-15 20:27:06 +08:00
|
|
|
class MipsMCAsmInfo : public MCAsmInfoELF {
|
|
|
|
void anchor() override;
|
|
|
|
|
|
|
|
public:
|
2015-09-16 00:17:27 +08:00
|
|
|
explicit MipsMCAsmInfo(const Triple &TheTriple);
|
2015-09-15 20:27:06 +08:00
|
|
|
};
|
2010-01-20 14:34:14 +08:00
|
|
|
|
2007-06-06 15:42:06 +08:00
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|