1
0
mirror of https://github.com/golang/go synced 2024-11-22 15:44:53 -07:00

runtime: fix build on openbsd/386

R=golang-dev, minux.ma, r
CC=golang-dev
https://golang.org/cl/8569043
This commit is contained in:
Joel Sing 2013-04-15 10:20:24 -07:00 committed by Rob Pike
parent 03640c58e3
commit 804ef381db

View File

@ -20,4 +20,4 @@
#define SIG_GS(info, ctxt) (SIG_REGS(ctxt).sc_gs)
#define SIG_CODE0(info, ctxt) ((info)->si_code)
#define SIG_CODE1(info, ctxt) ((uintptr)(info)->si_addr)
#define SIG_CODE1(info, ctxt) (*(uintptr*)((byte*)info + 12))