[Alignment][NFC] Use Align with TargetLowering::setMinFunctionAlignment
[llvm-core.git] / lib / Target / ARM / MCTargetDesc / ARMMCAsmInfo.h
blob55d7b299674d39447be2e19042848834d9d9cb69
1 //===-- ARMMCAsmInfo.h - ARM asm properties --------------------*- C++ -*--===//
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 declaration of the ARMMCAsmInfo class.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_LIB_TARGET_ARM_MCTARGETDESC_ARMMCASMINFO_H
14 #define LLVM_LIB_TARGET_ARM_MCTARGETDESC_ARMMCASMINFO_H
16 #include "llvm/MC/MCAsmInfoCOFF.h"
17 #include "llvm/MC/MCAsmInfoDarwin.h"
18 #include "llvm/MC/MCAsmInfoELF.h"
20 namespace llvm {
21 class Triple;
23 class ARMMCAsmInfoDarwin : public MCAsmInfoDarwin {
24 virtual void anchor();
26 public:
27 explicit ARMMCAsmInfoDarwin(const Triple &TheTriple);
30 class ARMELFMCAsmInfo : public MCAsmInfoELF {
31 void anchor() override;
33 public:
34 explicit ARMELFMCAsmInfo(const Triple &TT);
36 void setUseIntegratedAssembler(bool Value) override;
39 class ARMCOFFMCAsmInfoMicrosoft : public MCAsmInfoMicrosoft {
40 void anchor() override;
42 public:
43 explicit ARMCOFFMCAsmInfoMicrosoft();
46 class ARMCOFFMCAsmInfoGNU : public MCAsmInfoGNUCOFF {
47 void anchor() override;
49 public:
50 explicit ARMCOFFMCAsmInfoGNU();
53 } // namespace llvm
55 #endif