]> Cypherpunks repositories - gostls13.git/commit
array index bug
authorRuss Cox <rsc@golang.org>
Mon, 31 Aug 2009 01:47:48 +0000 (18:47 -0700)
committerRuss Cox <rsc@golang.org>
Mon, 31 Aug 2009 01:47:48 +0000 (18:47 -0700)
commit6e8524be1895a9b313f324700ad373e4f70144d7
tree0dc467917ed657e97833c195e600253d3f2605b3
parent427a0adb39a883be182f222a40a22f00ad4531cb
array index bug

x[i]
x not addressable, i >= UINF
double evaluated i
second eval killed live registers

manifested as gob instability

R=ken
OCL=34097
CL=34099
src/cmd/6g/cgen.c
test/fixedbugs/bug199.go [new file with mode: 0644]