diff options
author | Chris Lattner <sabre@nondot.org> | 2002-04-08 22:01:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-04-08 22:01:15 +0000 |
commit | 4d669b510c1d609c6b3fe98ac14ae38bd7c011f6 (patch) | |
tree | fddc1db11b5b51721a6b86cb6d2facb429703f95 /lib/CodeGen/RegAlloc/RegClass.cpp | |
parent | 35e309ab01a91af7b8c5d4268741222bcffbbb21 (diff) |
s/method/function
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2177 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAlloc/RegClass.cpp')
-rw-r--r-- | lib/CodeGen/RegAlloc/RegClass.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/RegAlloc/RegClass.cpp b/lib/CodeGen/RegAlloc/RegClass.cpp index 8ba6a15ad1..a0d43c80b1 100644 --- a/lib/CodeGen/RegAlloc/RegClass.cpp +++ b/lib/CodeGen/RegAlloc/RegClass.cpp @@ -6,9 +6,9 @@ using std::cerr; // This constructor inits IG. The actual matrix is created by a call to // createInterferenceGraph() above. //---------------------------------------------------------------------------- -RegClass::RegClass(const Method *const M, - const MachineRegClassInfo *const Mrc, - const ReservedColorListType *const RCL) +RegClass::RegClass(const Function *M, + const MachineRegClassInfo *Mrc, + const ReservedColorListType *RCL) : Meth(M), MRC(Mrc), RegClassID( Mrc->getRegClassID() ), IG(this), IGNodeStack(), ReservedColorList(RCL) { if( DEBUG_RA) |