From 833fc0c935fe1b6b0576a3d48b00efd037882c14 Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Sun, 30 Nov 2003 17:13:10 +0000 Subject: [PATCH] remove dead code --- SheepShaver/src/kpx_cpu/src/cpu/block-cache.hpp | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/SheepShaver/src/kpx_cpu/src/cpu/block-cache.hpp b/SheepShaver/src/kpx_cpu/src/cpu/block-cache.hpp index e19224ee..ce2dd492 100644 --- a/SheepShaver/src/kpx_cpu/src/cpu/block-cache.hpp +++ b/SheepShaver/src/kpx_cpu/src/cpu/block-cache.hpp @@ -61,8 +61,6 @@ public: void clear(); void clear_range(uintptr start, uintptr end); block_info *find(uintptr pc); - entry *first_active() const; - entry *first_dormant() const; void remove_from_cl_list(block_info *bi); void remove_from_list(block_info *bi); @@ -172,20 +170,6 @@ block_info *block_cache< block_info, block_allocator >::find(uintptr pc) return NULL; } -template< class block_info, template class block_allocator > -inline typename block_cache< block_info, block_allocator >::entry * -block_cache< block_info, block_allocator >::first_active() const -{ - return active; -} - -template< class block_info, template class block_allocator > -inline typename block_cache< block_info, block_allocator >::entry * -block_cache< block_info, block_allocator >::first_dormant() const -{ - return dormant; -} - template< class block_info, template class block_allocator > void block_cache< block_info, block_allocator >::remove_from_cl_list(block_info *bi) {