[Alignment][NFC] Convert StoreInst to MaybeAlign
[llvm-core.git] / lib / Target / ARM / ARMRegisterInfo.h
blob87c0f322d3b3aa806ae8a42c797489bf2081469f
1 //===-- ARMRegisterInfo.h - ARM Register Information Impl -------*- 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 ARM implementation of the TargetRegisterInfo class.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_LIB_TARGET_ARM_ARMREGISTERINFO_H
14 #define LLVM_LIB_TARGET_ARM_ARMREGISTERINFO_H
16 #include "ARMBaseRegisterInfo.h"
18 namespace llvm {
20 class ARMSubtarget;
22 struct ARMRegisterInfo : public ARMBaseRegisterInfo {
23 virtual void anchor();
24 public:
25 ARMRegisterInfo();
28 } // end namespace llvm
30 #endif