2015-06-30 07:51:55 +08:00
|
|
|
//===-- WebAssemblyMCAsmInfo.h - WebAssembly asm properties -----*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// \file
|
|
|
|
/// \brief This file contains the declaration of the WebAssemblyMCAsmInfo class.
|
|
|
|
///
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_LIB_TARGET_WEBASSEMBLY_MCTARGETDESC_WEBASSEMBLYMCASMINFO_H
|
|
|
|
#define LLVM_LIB_TARGET_WEBASSEMBLY_MCTARGETDESC_WEBASSEMBLYMCASMINFO_H
|
|
|
|
|
2015-12-18 04:50:45 +08:00
|
|
|
#include "llvm/MC/MCAsmInfoELF.h"
|
2015-06-30 07:51:55 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class Triple;
|
|
|
|
|
2015-12-18 04:50:45 +08:00
|
|
|
class WebAssemblyMCAsmInfo final : public MCAsmInfoELF {
|
2015-06-30 07:51:55 +08:00
|
|
|
public:
|
|
|
|
explicit WebAssemblyMCAsmInfo(const Triple &T);
|
|
|
|
~WebAssemblyMCAsmInfo() override;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|