libgo: Update to October 24 version of master library.

From-SVN: r204466
This commit is contained in:
Ian Lance Taylor 2013-11-06 19:49:01 +00:00
parent f20f261304
commit f038dae646
596 changed files with 32029 additions and 7466 deletions

View file

@ -16,7 +16,7 @@ __go_byte_array_to_string (const void* p, intgo len)
String ret;
bytes = (const unsigned char *) p;
retdata = runtime_mallocgc ((uintptr) len, FlagNoPointers, 1, 0);
retdata = runtime_mallocgc ((uintptr) len, 0, FlagNoScan);
__builtin_memcpy (retdata, bytes, len);
ret.str = retdata;
ret.len = len;