support logging addresses and names of JIT-compiled methods to a file specified via a system property

This commit is contained in:
Joel Dice
2008-09-19 11:34:37 -06:00
parent 27efbcf5e1
commit 1657fb794c
6 changed files with 70 additions and 17 deletions

View File

@ -20,7 +20,7 @@ void*
allocate(System* s, unsigned size)
{
void* p = s->tryAllocate(size);
if (p == 0) abort();
if (p == 0) s->abort();
return p;
}