blob: 3afc610b8b07b65a96dc8a20c6887cf3501d6cfa [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===-- llvm/MC/MCAsmInfoWasm.h - Wasm Asm info -----------------*- C++ -*-===//
2//
Andrew Walbran16937d02019-10-22 13:54:20 +01003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01006//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_MC_MCASMINFOWASM_H
10#define LLVM_MC_MCASMINFOWASM_H
11
12#include "llvm/MC/MCAsmInfo.h"
13
14namespace llvm {
15class MCAsmInfoWasm : public MCAsmInfo {
16 virtual void anchor();
17
18protected:
19 MCAsmInfoWasm();
20};
Andrew Scull0372a572018-11-16 15:47:06 +000021} // namespace llvm
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010022
23#endif