1 //===-- AVRMCAsmInfo.cpp - AVR asm properties -----------------------------===//
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 contains the declarations of the AVRMCAsmInfo properties.
11 //===----------------------------------------------------------------------===//
13 #include "AVRMCAsmInfo.h"
15 #include "llvm/ADT/Triple.h"
19 AVRMCAsmInfo::AVRMCAsmInfo(const Triple
&TT
) {
21 CalleeSaveStackSlotSize
= 2;
23 PrivateGlobalPrefix
= ".L";
24 UsesELFSectionDirectiveForBSS
= true;
25 UseIntegratedAssembler
= true;
26 SupportsDebugInformation
= true;
29 } // end of namespace llvm