From a0488a447164cda60186c97a70f24a1869c34b5d Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 27 Nov 2000 17:02:39 +0000 Subject: 2000-11-27 Joel Sherrill * cache/cache.h: Fix reference to MC68040 and put in stubs for missing support routines. The functionality of these routines needs to be addressed. --- c/src/lib/libcpu/sparc/ChangeLog | 6 ++++++ c/src/lib/libcpu/sparc/cache/cache.c | 21 +++++++++++++++++++-- 2 files changed, 25 insertions(+), 2 deletions(-) (limited to 'c/src/lib/libcpu') diff --git a/c/src/lib/libcpu/sparc/ChangeLog b/c/src/lib/libcpu/sparc/ChangeLog index c2f8f91b1a..35dca17eb4 100644 --- a/c/src/lib/libcpu/sparc/ChangeLog +++ b/c/src/lib/libcpu/sparc/ChangeLog @@ -1,3 +1,9 @@ +2000-11-27 Joel Sherrill + + * cache/cache.h: Fix reference to MC68040 and put in stubs + for missing support routines. The functionality of these + routines needs to be addressed. + 2000-11-14 Jiri Gaisler * Makefile.am, configure.in: Added support for instruction diff --git a/c/src/lib/libcpu/sparc/cache/cache.c b/c/src/lib/libcpu/sparc/cache/cache.c index d0b2fc5096..4b45302a88 100644 --- a/c/src/lib/libcpu/sparc/cache/cache.c +++ b/c/src/lib/libcpu/sparc/cache/cache.c @@ -1,5 +1,5 @@ /* - * Cache Management Support Routines for the MC68040 + * Cache Management Support Routines for the SPARC * * $Id$ */ @@ -14,6 +14,23 @@ void _CPU_cache_invalidate_entire_instruction ( void ) { asm volatile ("flush"); } -#endif +/* XXX these need to be addressed */ +void _CPU_cache_freeze_instruction ( void ) +{ +} + +void _CPU_cache_unfreeze_instruction ( void ) +{ +} + +void _CPU_cache_enable_instruction ( void ) +{ +} + +void _CPU_cache_disable_instruction ( void ) +{ +} + +#endif /* end of file */ -- cgit v1.2.3