1. 19 Aug, 2014 13 commits
  2. 18 Aug, 2014 9 commits
  3. 16 Aug, 2014 4 commits
  4. 15 Aug, 2014 8 commits
  5. 14 Aug, 2014 3 commits
  6. 13 Aug, 2014 3 commits
    • Rob Pike's avatar
      doc/go1.4.txt: cmd/go changes, syscall · 937f0d59
      Rob Pike authored
      CC=golang-codereviews
      https://golang.org/cl/129130043
      937f0d59
    • Robert Griesemer's avatar
      text/scanner: improve documentation · e9bbcea8
      Robert Griesemer authored
      LGTM=r
      R=r
      CC=golang-codereviews
      https://golang.org/cl/123390043
      e9bbcea8
    • Matthew Dempsky's avatar
      cmd/cgo, debug/dwarf: fix translation of zero-size arrays · 078a9cbc
      Matthew Dempsky authored
      In cgo, now that recursive calls to typeConv.Type() always work,
      we can more robustly calculate the array sizes based on the size
      of our element type.
      
      Also, in debug/dwarf, the decision to call zeroType is made
      based on a type's usage	within a particular struct, but dwarf.Type
      values are cached in typeCache, so the modification might affect
      uses of the type in other structs.  Current compilers don't appear
      to share DWARF type entries for "[]foo" and "[0]foo", but they also
      don't consistently share type entries in other cases.  Arguably
      modifying the types is an improvement in some cases, but varying
      translated types according to compiler whims seems like a bad idea.
      
      Lastly, also in debug/dwarf, zeroType only needs to rewrite the
      top-level dimension, and only if the rest of the array size is
      non-zero.
      
      Fixes #8428.
      
      LGTM=iant
      R=iant
      CC=golang-codereviews
      https://golang.org/cl/127980043
      078a9cbc