Commit 6fbfce78 by Ian Lance Taylor

re PR go/59866 (gccgo gc work buffer is misaligned)

	PR go/59866
runtime: Force work variable in mgc0 to be aligned on 8-byte boundary.

From-SVN: r206738
parent 2043135a
......@@ -180,7 +180,7 @@ static struct {
Obj *roots;
uint32 nroot;
uint32 rootcap;
} work;
} work __attribute__((aligned(8)));
enum {
GC_DEFAULT_PTR = GC_NUM_INSTR,
......
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