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 
150b57cec5SDimitry Andric #include "llvm/ADT/Triple.h"
160b57cec5SDimitry Andric 
170b57cec5SDimitry Andric namespace llvm {
180b57cec5SDimitry Andric 
19480093f4SDimitry Andric AVRMCAsmInfo::AVRMCAsmInfo(const Triple &TT, const MCTargetOptions &Options) {
200b57cec5SDimitry Andric   CodePointerSize = 2;
210b57cec5SDimitry Andric   CalleeSaveStackSlotSize = 2;
220b57cec5SDimitry Andric   CommentString = ";";
230b57cec5SDimitry Andric   PrivateGlobalPrefix = ".L";
240b57cec5SDimitry Andric   UsesELFSectionDirectiveForBSS = true;
250b57cec5SDimitry Andric   UseIntegratedAssembler = true;
260b57cec5SDimitry Andric   SupportsDebugInformation = true;
270b57cec5SDimitry Andric }
280b57cec5SDimitry Andric 
290b57cec5SDimitry Andric } // end of namespace llvm
30