1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

Nonvirtual dtor that was accessible enough to be bad.

llvm-svn: 117180
This commit is contained in:
Andrew Trick 2010-10-22 23:33:19 +00:00
parent 8bc3d6ec45
commit 4043309a54

View File

@ -87,6 +87,8 @@ protected:
RegAllocBase(): tri_(0), vrm_(0), lis_(0) {}
virtual ~RegAllocBase() {}
// A RegAlloc pass should call this before allocatePhysRegs.
void init(const TargetRegisterInfo &tri, VirtRegMap &vrm, LiveIntervals &lis);