Path: blob/main/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.cpp
35294 views
//===-- AVRMCAsmInfo.cpp - AVR asm properties -----------------------------===//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 contains the declarations of the AVRMCAsmInfo properties.9//10//===----------------------------------------------------------------------===//1112#include "AVRMCAsmInfo.h"1314#include "llvm/TargetParser/Triple.h"1516namespace llvm {1718AVRMCAsmInfo::AVRMCAsmInfo(const Triple &TT, const MCTargetOptions &Options) {19CodePointerSize = 2;20CalleeSaveStackSlotSize = 2;21CommentString = ";";22SeparatorString = "$";23PrivateGlobalPrefix = ".L";24PrivateLabelPrefix = ".L";25UsesELFSectionDirectiveForBSS = true;26SupportsDebugInformation = true;27}2829} // end of namespace llvm303132