1 //===-- MCAsmInfoWasm.cpp - Wasm asm properties -----------------*- C++ -*-===//
3 // 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
7 //===----------------------------------------------------------------------===//
9 // This file defines target asm properties related what form asm statements
10 // should take in general on Wasm-based targets
12 //===----------------------------------------------------------------------===//
14 #include "llvm/MC/MCAsmInfoWasm.h"
17 void MCAsmInfoWasm::anchor() {}
19 MCAsmInfoWasm::MCAsmInfoWasm() {
20 HasIdentDirective
= true;
21 HasNoDeadStrip
= true;
22 WeakRefDirective
= "\t.weak\t";
23 PrivateGlobalPrefix
= ".L";
24 PrivateLabelPrefix
= ".L";