aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-10-29 16:50:33 +0000
committerChris Lattner <sabre@nondot.org>2002-10-29 16:50:33 +0000
commit770feb4bfcd920498ec24296685495678579bb65 (patch)
tree257f6cbbaf4b760f0baba39b2936a7b93abfb3e9 /lib/CodeGen
parenta80848704ab0eb2cc7429bd3e2a8a4cc6246921b (diff)
De-inline methods
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4379 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/RegAlloc/RegClass.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/lib/CodeGen/RegAlloc/RegClass.h b/lib/CodeGen/RegAlloc/RegClass.h
index 4584a5f7a1..99a84c0269 100644
--- a/lib/CodeGen/RegAlloc/RegClass.h
+++ b/lib/CodeGen/RegAlloc/RegClass.h
@@ -108,15 +108,8 @@ class RegClass {
inline std::vector<bool> &getIsColorUsedArr() { return IsColorUsedArr; }
- inline void printIGNodeList() const {
- std::cerr << "IG Nodes for Register Class " << RegClassID << ":" << "\n";
- IG.printIGNodeList();
- }
-
- inline void printIG() {
- std::cerr << "IG for Register Class " << RegClassID << ":" << "\n";
- IG.printIG();
- }
+ void printIGNodeList() const;
+ void printIG();
};
#endif