2012-02-18 13:03:15 +01:00
|
|
|
//===-- ARMRegisterInfo.cpp - ARM Register Information --------------------===//
|
2006-05-15 00:18:28 +02:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
2006-05-15 00:18:28 +02:00
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2008-02-10 19:45:23 +01:00
|
|
|
// This file contains the ARM implementation of the TargetRegisterInfo class.
|
2006-05-15 00:18:28 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-03-17 08:33:42 +01:00
|
|
|
#include "ARMRegisterInfo.h"
|
2006-05-15 00:18:28 +02:00
|
|
|
#include "ARM.h"
|
2009-07-08 22:28:28 +02:00
|
|
|
#include "ARMBaseInstrInfo.h"
|
2006-05-15 00:18:28 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
2011-12-20 03:50:00 +01:00
|
|
|
void ARMRegisterInfo::anchor() { }
|
|
|
|
|
2009-07-08 20:31:39 +02:00
|
|
|
ARMRegisterInfo::ARMRegisterInfo(const ARMBaseInstrInfo &tii,
|
2009-06-27 14:16:40 +02:00
|
|
|
const ARMSubtarget &sti)
|
|
|
|
: ARMBaseRegisterInfo(tii, sti) {
|
|
|
|
}
|