aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/runtime/testdata/testprog/crash.go
AgeCommit message (Collapse)AuthorFilesLines
2019-02-26libgo: update to Go 1.12 releaseIan Lance Taylor1-0/+21
Reviewed-on: https://go-review.googlesource.com/c/163742 From-SVN: r269216
2017-06-22runtime: don't assume that _ = *s will panic if s is nilIan Lance Taylor1-2/+3
With the gc toolchain apparently var s *string _ = *s is enough to panic with a nil pointer dereference. The gccgo compiler will simply discard the dereference, which I think is a reasonable and acceptable optimization. Change the tests to use an exported variable instead. The tests are not currently run, but they will be with a later patch to gotools. Reviewed-on: https://go-review.googlesource.com/46450 From-SVN: r249562
2016-07-22libgo: update to go1.7rc3Ian Lance Taylor1-1/+1
Reviewed-on: https://go-review.googlesource.com/25150 From-SVN: r238662
2016-02-03libgo: Update to go1.6rc1.Ian Lance Taylor1-0/+45
Reviewed-on: https://go-review.googlesource.com/19200 From-SVN: r233110