Commit a7188cc6 by Ian Lance Taylor

runtime: Use correct size for unsafe.Pointer GC instructions.

From-SVN: r214965
parent 345b82be
......@@ -39,7 +39,7 @@ static const String reflection_string =
sizeof REFLECTION - 1
};
const uintptr unsafe_Pointer_gc[] = {8, GC_APTR, 0, GC_END};
const uintptr unsafe_Pointer_gc[] = {sizeof(void*), GC_APTR, 0, GC_END};
const struct __go_type_descriptor unsafe_Pointer =
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment