1009cd4e4SKit Barton //===- PPCRegisterBankInfo.cpp --------------------------------------------===//
2009cd4e4SKit Barton //
3009cd4e4SKit Barton // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4009cd4e4SKit Barton // See https://llvm.org/LICENSE.txt for license information.
5009cd4e4SKit Barton // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6009cd4e4SKit Barton //
7009cd4e4SKit Barton //===----------------------------------------------------------------------===//
8009cd4e4SKit Barton /// \file
9009cd4e4SKit Barton /// This file implements the targeting of the RegisterBankInfo class for
10009cd4e4SKit Barton /// PowerPC.
11009cd4e4SKit Barton //===----------------------------------------------------------------------===//
12009cd4e4SKit Barton 
13009cd4e4SKit Barton #include "PPCRegisterBankInfo.h"
14009cd4e4SKit Barton #include "PPCRegisterInfo.h"
15009cd4e4SKit Barton #include "llvm/CodeGen/MachineFunction.h"
16009cd4e4SKit Barton #include "llvm/CodeGen/MachineRegisterInfo.h"
17009cd4e4SKit Barton #include "llvm/Support/Debug.h"
18009cd4e4SKit Barton 
19009cd4e4SKit Barton #define DEBUG_TYPE "ppc-reg-bank-info"
20009cd4e4SKit Barton 
21009cd4e4SKit Barton #define GET_TARGET_REGBANK_IMPL
22009cd4e4SKit Barton #include "PPCGenRegisterBank.inc"
23009cd4e4SKit Barton 
24009cd4e4SKit Barton using namespace llvm;
25009cd4e4SKit Barton 
PPCRegisterBankInfo(const TargetRegisterInfo & TRI)26*62128719SKazu Hirata PPCRegisterBankInfo::PPCRegisterBankInfo(const TargetRegisterInfo &TRI) {}
27