10b57cec5SDimitry Andric //===-- AVRMCAsmInfo.cpp - AVR asm properties -----------------------------===// 20b57cec5SDimitry Andric // 30b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 40b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information. 50b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 60b57cec5SDimitry Andric // 70b57cec5SDimitry Andric //===----------------------------------------------------------------------===// 80b57cec5SDimitry Andric // 90b57cec5SDimitry Andric // This file contains the declarations of the AVRMCAsmInfo properties. 100b57cec5SDimitry Andric // 110b57cec5SDimitry Andric //===----------------------------------------------------------------------===// 120b57cec5SDimitry Andric 130b57cec5SDimitry Andric #include "AVRMCAsmInfo.h" 140b57cec5SDimitry Andric 15*06c3fb27SDimitry Andric #include "llvm/TargetParser/Triple.h" 160b57cec5SDimitry Andric 170b57cec5SDimitry Andric namespace llvm { 180b57cec5SDimitry Andric AVRMCAsmInfo(const Triple & TT,const MCTargetOptions & Options)19480093f4SDimitry AndricAVRMCAsmInfo::AVRMCAsmInfo(const Triple &TT, const MCTargetOptions &Options) { 200b57cec5SDimitry Andric CodePointerSize = 2; 210b57cec5SDimitry Andric CalleeSaveStackSlotSize = 2; 220b57cec5SDimitry Andric CommentString = ";"; 23bdd1243dSDimitry Andric SeparatorString = "$"; 240b57cec5SDimitry Andric PrivateGlobalPrefix = ".L"; 255ffd83dbSDimitry Andric PrivateLabelPrefix = ".L"; 260b57cec5SDimitry Andric UsesELFSectionDirectiveForBSS = true; 270b57cec5SDimitry Andric SupportsDebugInformation = true; 280b57cec5SDimitry Andric } 290b57cec5SDimitry Andric 300b57cec5SDimitry Andric } // end of namespace llvm 31