[llvm-shlib] Fix the version naming style of libLLVM for Windows (#85710)
[llvm-project.git] / llvm / lib / Target / AVR / MCTargetDesc / AVRMCAsmInfo.cpp
blob66786eb3244e47fecef06033588092ae0fb2d149
1 //===-- AVRMCAsmInfo.cpp - AVR asm properties -----------------------------===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file contains the declarations of the AVRMCAsmInfo properties.
11 //===----------------------------------------------------------------------===//
13 #include "AVRMCAsmInfo.h"
15 #include "llvm/TargetParser/Triple.h"
17 namespace llvm {
19 AVRMCAsmInfo::AVRMCAsmInfo(const Triple &TT, const MCTargetOptions &Options) {
20 CodePointerSize = 2;
21 CalleeSaveStackSlotSize = 2;
22 CommentString = ";";
23 SeparatorString = "$";
24 PrivateGlobalPrefix = ".L";
25 PrivateLabelPrefix = ".L";
26 UsesELFSectionDirectiveForBSS = true;
27 SupportsDebugInformation = true;
30 } // end of namespace llvm