1. 21 Apr, 2016 1 commit
  2. 15 Apr, 2016 1 commit
  3. 10 Apr, 2016 1 commit
  4. 08 Apr, 2016 1 commit
  5. 07 Apr, 2016 2 commits
  6. 28 Mar, 2016 1 commit
  7. 03 Mar, 2016 1 commit
  8. 02 Mar, 2016 1 commit
    • Brad Fitzpatrick's avatar
      all: single space after period. · 5fea2ccc
      Brad Fitzpatrick authored
      The tree's pretty inconsistent about single space vs double space
      after a period in documentation. Make it consistently a single space,
      per earlier decisions. This means contributors won't be confused by
      misleading precedence.
      
      This CL doesn't use go/doc to parse. It only addresses // comments.
      It was generated with:
      
      $ perl -i -npe 's,^(\s*// .+[a-z]\.)  +([A-Z]),$1 $2,' $(git grep -l -E '^\s*//(.+\.)  +([A-Z])')
      $ go test go/doc -update
      
      Change-Id: Iccdb99c37c797ef1f804a94b22ba5ee4b500c4f7
      Reviewed-on: https://go-review.googlesource.com/20022
      
      Reviewed-by: default avatarRob Pike <r@golang.org>
      Reviewed-by: default avatarDave Day <djd@golang.org>
      Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      5fea2ccc
  9. 21 May, 2015 1 commit
  10. 04 May, 2015 1 commit
    • Dave Cheney's avatar
      cmd/internal/ld: delete Biobuf · 71274e48
      Dave Cheney authored
      Update #10652
      
      This proposal deletes cmd/internal/ld.Biobuf and replaces all uses with
      cmd/internal/obj.Biobuf. As cmd/internal/ld already imported cmd/internal/obj
      there are no additional dependencies created.
      
      Notes:
      
      - ld.Boffset included more checks, so it was merged into obj.Boffset
      - obj.Bflush was removed in 8d16253c, so replaced all calls to
        ld.Bflush, with obj.Biobuf.Flush.
      - Almost all of this change was prepared with sed.
      
      Change-Id: I814854d52f5729a5a40c523c8188e465246b88da
      Reviewed-on: https://go-review.googlesource.com/9660
      
      Reviewed-by: default avatarKeith Randall <khr@golang.org>
      Run-TryBot: Dave Cheney <dave@cheney.net>
      71274e48
  11. 20 Apr, 2015 1 commit
  12. 17 Apr, 2015 1 commit
  13. 05 Mar, 2015 1 commit
  14. 03 Mar, 2015 1 commit
  15. 02 Mar, 2015 1 commit
    • Russ Cox's avatar
      cmd/5g etc: mechanical cleanup · 79f727a7
      Russ Cox authored
      Run rsc.io/grind rev a26569f on C->Go conversions.
      
      The new change in grind is the inlining of goto targets.
      If code says 'goto x' and the block starting at label x is unreachable
      except through that goto and the code can be moved to where
      the goto is without changing the meaning of its variable names,
      grind does that move. Simlarly, a goto to a plain return statement
      turns into that return statement (even if there are other paths to
      the return statement).
      
      Combined, these remove many long-distance gotos, which in turn
      makes it possible to reduce the scope of more variable declarations.
      (Because gotos can't jump across declarations, the gotos were
      keeping the declarations from moving.)
      
      Checked bit-for-bit compatibility with toolstash + buildall.
      
      Reduces compiler runtime in html/template by about 12%.
      
      Change-Id: Id727c0bd7763a61aa22f3daa00aeb8fccbc057a3
      Reviewed-on: https://go-review.googlesource.com/6472
      
      Reviewed-by: default avatarAram Hăvărneanu <aram@mgk.ro>
      Reviewed-by: default avatarDmitry Vyukov <dvyukov@google.com>
      79f727a7
  16. 01 Mar, 2015 1 commit