1235633Sdim//===-- ARMRegisterInfo.cpp - ARM Register Information --------------------===//
2193323Sed//
3193323Sed//                     The LLVM Compiler Infrastructure
4193323Sed//
5193323Sed// This file is distributed under the University of Illinois Open Source
6193323Sed// License. See LICENSE.TXT for details.
7193323Sed//
8193323Sed//===----------------------------------------------------------------------===//
9193323Sed//
10193323Sed// This file contains the ARM implementation of the TargetRegisterInfo class.
11193323Sed//
12193323Sed//===----------------------------------------------------------------------===//
13193323Sed
14235633Sdim#include "ARMRegisterInfo.h"
15193323Sed#include "ARM.h"
16198090Srdivacky#include "ARMBaseInstrInfo.h"
17193323Sedusing namespace llvm;
18193323Sed
19235633Sdimvoid ARMRegisterInfo::anchor() { }
20235633Sdim
21263509SdimARMRegisterInfo::ARMRegisterInfo(const ARMSubtarget &sti)
22263509Sdim  : ARMBaseRegisterInfo(sti) {
23195340Sed}
24