Improved log text for JIT cache allocation

This commit is contained in:
Dimitris Panokostas 2019-10-05 11:02:40 +02:00
parent 69a7d122dc
commit a69454f2b2

View file

@ -1723,7 +1723,7 @@ void alloc_cache(void)
compiled_code = popallspace + POPALLSPACE_SIZE;
if (compiled_code) {
write_log("Actual translation cache size : %d KB at %p-%p\n", cache_size, compiled_code, compiled_code + cache_size*1024);
write_log("<JIT compiler> : actual translation cache size : %d KB at %p-%p\n", cache_size, compiled_code, compiled_code + cache_size * 1024);
#if defined(CPU_arm) && !defined(ARMV6T2) && !defined(CPU_AARCH64)
max_compile_start = compiled_code + cache_size * 1024 - BYTES_PER_INST - DATA_BUFFER_SIZE;
#else