Path: blob/main/contrib/llvm-project/llvm/lib/MC/MCAsmInfoWasm.cpp
35233 views
//===-- MCAsmInfoWasm.cpp - Wasm 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// This file defines target asm properties related what form asm statements9// should take in general on Wasm-based targets10//11//===----------------------------------------------------------------------===//1213#include "llvm/MC/MCAsmInfoWasm.h"14using namespace llvm;1516void MCAsmInfoWasm::anchor() {}1718MCAsmInfoWasm::MCAsmInfoWasm() {19HasIdentDirective = true;20HasNoDeadStrip = true;21WeakRefDirective = "\t.weak\t";22PrivateGlobalPrefix = ".L";23PrivateLabelPrefix = ".L";24}252627