Commit 72bc37c1 authored by Dean Prichard's avatar Dean Prichard Committed by Russ Cox

arm: fix build

R=kaib, rsc
CC=golang-dev
https://golang.org/cl/627045
parent 456642ad
......@@ -498,12 +498,12 @@ gdatacomplex(Node *nam, Mpcplx *cval)
w = types[w]->width;
p = gins(ADATA, nam, N);
p->from.scale = w;
p->reg = w;
p->to.type = D_FCONST;
p->to.dval = mpgetflt(&cval->real);
p = gins(ADATA, nam, N);
p->from.scale = w;
p->reg = w;
p->from.offset += w;
p->to.type = D_FCONST;
p->to.dval = mpgetflt(&cval->imag);
......
......@@ -59,7 +59,7 @@ do break
broke
=========== fixedbugs/bug081.go
fixedbugs/bug081.go:9: fatal error: typecheck loop
fixedbugs/bug081.go:9: typechecking loop
=========== fixedbugs/bug093.go
M
......@@ -80,11 +80,10 @@ panic PC=xxx
[1] Segmentation fault "${@}"
=========== fixedbugs/bug154.go
??none??: $GOROOT/pkg/linux_arm/strconv.a: failed to load: os.ERANGE
[1] Segmentation fault "${@}"
BUG: should not panic
=========== fixedbugs/bug206.go
??none??: $GOROOT/pkg/linux_arm/strconv.a: failed to load: os.ERANGE
BUG: bug206
=========== helloworld.go
......
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