1. 10 Jul, 2014 8 commits
  2. 09 Jul, 2014 15 commits
  3. 08 Jul, 2014 14 commits
  4. 07 Jul, 2014 3 commits
    • Josh Bleecher Snyder's avatar
      net/rpc: use html/template to render html · ccb99122
      Josh Bleecher Snyder authored
      Found using the vet check in CL 106370045.
      
      LGTM=r
      R=golang-codereviews, r
      CC=golang-codereviews
      https://golang.org/cl/101670044
      ccb99122
    • Rob Pike's avatar
      cmd/ld: fix off-by-one in DWARF frame tables · 7b0ee534
      Rob Pike authored
      The code generating the .debug_frame section emits pairs of "advance PC",
      "set SP offset" pseudo-instructions. Before the fix, the PC advance comes
      out before the SP setting, which means the emitted offset for a block is
      actually the value at the end of the block, which is incorrect for the
      block itself.
      
      The easiest way to fix this problem is to emit the SP offset before the
      PC advance.
      
      One delicate point: the last instruction to come out is now an
      "advance PC", which means that if there are padding intsructions after
      the final RET, they will appear to have a non-zero offset. This is odd
      but harmless because there is no legal way to have a PC in that range,
      or to put it another way, if you get here the SP is certainly screwed up
      so getting the wrong (virtual) frame pointer is the least of your worries.
      
      LGTM=iant
      R=rsc, iant, lvd
      CC=golang-codereviews
      https://golang.org/cl/112750043
      7b0ee534
    • David Crawshaw's avatar
      runtime: export _rt0 for android · c1c8c3c8
      David Crawshaw authored
      LGTM=iant, minux
      R=golang-codereviews, minux, iant
      CC=golang-codereviews
      https://golang.org/cl/109470043
      c1c8c3c8