Path: blob/main/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.h
35294 views
//===-- WebAssemblyMCAsmInfo.h - WebAssembly asm properties -----*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7///8/// \file9/// This file contains the declaration of the WebAssemblyMCAsmInfo class.10///11//===----------------------------------------------------------------------===//1213#ifndef LLVM_LIB_TARGET_WEBASSEMBLY_MCTARGETDESC_WEBASSEMBLYMCASMINFO_H14#define LLVM_LIB_TARGET_WEBASSEMBLY_MCTARGETDESC_WEBASSEMBLYMCASMINFO_H1516#include "llvm/MC/MCAsmInfoWasm.h"1718namespace llvm {1920class Triple;2122class WebAssemblyMCAsmInfo final : public MCAsmInfoWasm {23public:24explicit WebAssemblyMCAsmInfo(const Triple &T,25const MCTargetOptions &Options);26~WebAssemblyMCAsmInfo() override;27};2829} // end namespace llvm3031#endif323334