LLVM API Documentation

ARMRegisterInfo.h
Go to the documentation of this file.
00001 //===-- ARMRegisterInfo.h - ARM Register Information Impl -------*- C++ -*-===//
00002 //
00003 //                     The LLVM Compiler Infrastructure
00004 //
00005 // This file is distributed under the University of Illinois Open Source
00006 // License. See LICENSE.TXT for details.
00007 //
00008 //===----------------------------------------------------------------------===//
00009 //
00010 // This file contains the ARM implementation of the TargetRegisterInfo class.
00011 //
00012 //===----------------------------------------------------------------------===//
00013 
00014 #ifndef LLVM_LIB_TARGET_ARM_ARMREGISTERINFO_H
00015 #define LLVM_LIB_TARGET_ARM_ARMREGISTERINFO_H
00016 
00017 #include "ARMBaseRegisterInfo.h"
00018 
00019 namespace llvm {
00020 
00021 class ARMSubtarget;
00022 
00023 struct ARMRegisterInfo : public ARMBaseRegisterInfo {
00024   virtual void anchor();
00025 public:
00026   ARMRegisterInfo(const ARMSubtarget &STI);
00027 };
00028 
00029 } // end namespace llvm
00030 
00031 #endif