1. 21 Feb, 2016 5 commits
  2. 20 Feb, 2016 12 commits
  3. 19 Feb, 2016 20 commits
  4. 18 Feb, 2016 3 commits
    • Brad Fitzpatrick's avatar
      net/http: fix bug where http2 wasn't enabled on DefaultTransport · 2eeaaaae
      Brad Fitzpatrick authored
      I had accidentally disabled a headline feature at the last second. :(
      
      Fixes #14391
      
      Change-Id: I1992c9b801072b7538b95c55242be174075ff932
      Reviewed-on: https://go-review.googlesource.com/19672Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
      Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      2eeaaaae
    • Rhys Hiltner's avatar
      cmd/link/internal/ld: remove unused call to os.Getwd · 98cc8b4c
      Rhys Hiltner authored
      This call to os.Getwd (or getwd) has been part of the linker since the C
      implementation in 7d507dc6. It stopped being used in 26438d4d, and
      survived the conversion to Go in 1f9dbb60.
      
      Its return value goes unused (the linker gets the value for AT_comp_dir in
      dwarf.go), remove it.
      
      Change-Id: I3d4594813bb4ee0a6af31a36e19d99ec4b863677
      Reviewed-on: https://go-review.googlesource.com/19655Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
      Run-TryBot: Ian Lance Taylor <iant@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      98cc8b4c
    • Matthew Dempsky's avatar
      cmd/compile: cleanup mkbuiltin.go · 7555f7f2
      Matthew Dempsky authored
      Changes largely in preparation for eventually switching the builtin
      export data to use the new binary format.
      
      Replace fancy incremental line-by-line scanning with simply reading
      the entire object file into memory, finding the export data section,
      and processing it that way.
      
      Just use "package runtime" and "package unsafe" in the builtin Go
      source files so we don't need to rewrite references to "PACKAGE".
      
      Stop looking for init_PACKAGE_function; it doesn't exist anyway.
      
      Compile package runtime with -u so that its export data marks it as a
      "safe" package.
      
      Eliminate requirement to pass "runtime" and "unsafe" as command-line
      arguments so that just "go run mkbuiltin.go" works.
      
      Only rewrite builtin.go when successful.
      
      Change-Id: I4addfde9e0cfb30607c7a83de686bde0ad1f035a
      Reviewed-on: https://go-review.googlesource.com/19624Reviewed-by: default avatarRobert Griesemer <gri@golang.org>
      Run-TryBot: Robert Griesemer <gri@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      7555f7f2