diff -r 8a4ef4e001d3 -r c7c777385a15 src/share/vm/runtime/stubCodeGenerator.cpp --- a/src/share/vm/runtime/stubCodeGenerator.cpp Fri Mar 28 09:00:39 2008 -0700 +++ b/src/share/vm/runtime/stubCodeGenerator.cpp Wed Apr 02 12:09:59 2008 -0700 @@ -69,7 +69,6 @@ _first_stub = _last_stub = NULL; } -#ifndef PRODUCT extern "C" { static int compare_cdesc(const void* void_a, const void* void_b) { int ai = (*((StubCodeDesc**) void_a))->index(); @@ -77,10 +76,8 @@ return ai - bi; } } -#endif StubCodeGenerator::~StubCodeGenerator() { -#ifndef PRODUCT if (PrintStubCode) { CodeBuffer* cbuf = _masm->code(); CodeBlob* blob = CodeCache::find_blob_unsafe(cbuf->insts()->start()); @@ -105,7 +102,6 @@ tty->cr(); } } -#endif //PRODUCT }