Merge pull request #465 from xbe/unix-gc

unix: Fix GC not tracing .data
This commit is contained in:
Damien George 2014-04-12 00:27:19 +01:00
commit 8c63ef187d
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ void gc_collect(void) {
//gc_dump_info();
gc_collect_start();
// this traces .data and .bss sections
// this traces the .bss section
#ifdef __CYGWIN__
#define BSS_START __bss_start__
#else