mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 17:37:24 +00:00
21 lines
687 B
C++
21 lines
687 B
C++
|
//===-- MachineRegisterInfo.cpp -------------------------------------------===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
//
|
||
|
// Implementation of the MachineRegisterInfo class.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
||
|
using namespace llvm;
|
||
|
|
||
|
MachineRegisterInfo::MachineRegisterInfo(const MRegisterInfo &MRI) {
|
||
|
VRegInfo.reserve(256);
|
||
|
UsedPhysRegs.resize(MRI.getNumRegs());
|
||
|
}
|