diff -r 80a845ab5e4a -r f5c393d456fc hotspot/src/cpu/ppc/vm/icache_ppc.cpp --- a/hotspot/src/cpu/ppc/vm/icache_ppc.cpp Tue Dec 10 14:29:43 2013 +0100 +++ b/hotspot/src/cpu/ppc/vm/icache_ppc.cpp Wed Dec 11 00:06:11 2013 +0100 @@ -28,17 +28,17 @@ #include "runtime/icache.hpp" // Use inline assembler to implement icache flush. -int ppc64_flush_icache(address start, int lines, int magic){ +int ICache::ppc64_flush_icache(address start, int lines, int magic) { address end = start + (unsigned int)lines*ICache::line_size; assert(start <= end, "flush_icache parms"); // store modified cache lines from data cache - for (address a=start; a