Add gfx950 mfma instructions to ROCDL dialect (#123361)
[llvm-project.git] / llvm / lib / Target / ARM / ARMRegisterInfo.h
blob2971b765a6fc083e0916b02c2ed6084044bbee5b
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 struct ARMRegisterInfo : public ARMBaseRegisterInfo {
21 virtual void anchor();
22 public:
23 ARMRegisterInfo();
26 } // end namespace llvm
28 #endif