Commit 804ef381 authored by Joel Sing's avatar Joel Sing Committed by Rob Pike

runtime: fix build on openbsd/386

R=golang-dev, minux.ma, r
CC=golang-dev
https://golang.org/cl/8569043
parent 03640c58
......@@ -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))
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