summaryrefslogtreecommitdiff
path: root/include
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 /include
parenta80848704ab0eb2cc7429bd3e2a8a4cc6246921b (diff)
downloadllvm-770feb4bfcd920498ec24296685495678579bb65.tar.gz
llvm-770feb4bfcd920498ec24296685495678579bb65.tar.bz2
llvm-770feb4bfcd920498ec24296685495678579bb65.tar.xz
De-inline methods
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4379 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/RegClass.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/include/llvm/CodeGen/RegClass.h b/include/llvm/CodeGen/RegClass.h
index 4584a5f7a1..99a84c0269 100644
--- a/include/llvm/CodeGen/RegClass.h
+++ b/include/llvm/CodeGen/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