1. 19 Nov, 2008 3 commits
    • Russ Cox's avatar
      return *os.Error instead of bool from strconv.ato* · 6cc001c3
      Russ Cox authored
      R=r
      DELTA=137  (56 added, 4 deleted, 77 changed)
      OCL=19505
      CL=19522
      6cc001c3
    • Russ Cox's avatar
      gobuild changes. · 360151d4
      Russ Cox authored
      	* handles multiple packages per directory
      	* scans directory for files if given no arguments
      	* infers package name
      	* includes test rule invoking gotest
      
      R=r
      DELTA=746  (444 added, 150 deleted, 152 changed)
      OCL=19504
      CL=19521
      360151d4
    • Russ Cox's avatar
      roll tests into one binary · c1efd7d6
      Russ Cox authored
      R=r
      DELTA=145  (27 added, 27 deleted, 91 changed)
      OCL=19423
      CL=19502
      c1efd7d6
  2. 18 Nov, 2008 17 commits
  3. 17 Nov, 2008 9 commits
    • Russ Cox's avatar
      fix the easy parts of bug120 · a1585b67
      Russ Cox authored
      R=r,ken
      DELTA=66  (52 added, 3 deleted, 11 changed)
      OCL=19386
      CL=19389
      a1585b67
    • Ken Thompson's avatar
      silence compiler warning · b7f01f9f
      Ken Thompson authored
      R=r
      OCL=19382
      CL=19382
      b7f01f9f
    • Russ Cox's avatar
      update golden.out. · 869c3f4c
      Russ Cox authored
      fix bug in run that was missing output.
      make run warn about tests in bugs/ that succeed with no output
      	(should be moved to fixedbugs/).
      
      R=r
      DELTA=21  (18 added, 0 deleted, 3 changed)
      OCL=19381
      CL=19381
      869c3f4c
    • Russ Cox's avatar
      correctly rounded floating-point conversions · 079c00a4
      Russ Cox authored
      in new package strconv.
      
      move atoi etc to strconv too.
      
      update fmt, etc to use strconv.
      
      R=r
      DELTA=2232  (1691 added, 424 deleted, 117 changed)
      OCL=19286
      CL=19380
      079c00a4
    • Russ Cox's avatar
      floating point constant errors in 6g · f333f468
      Russ Cox authored
      R=r
      OCL=19379
      CL=19379
      f333f468
    • Russ Cox's avatar
      First pieces of malloc. · 75647d20
      Russ Cox authored
      R=r
      DELTA=756  (754 added, 0 deleted, 2 changed)
      OCL=19266
      CL=19378
      75647d20
    • Ian Lance Taylor's avatar
      The scope rules have been clarified to indicate that a · b1e8b5f5
      Ian Lance Taylor authored
      variable may only be named after the complete declaration,
      including the initialization statements.
      
      R=gri
      DELTA=61  (16 added, 45 deleted, 0 changed)
      OCL=19343
      CL=19376
      b1e8b5f5
    • Russ Cox's avatar
      adopt suggestions from Bentley and McIlroy (SP&E Nov 1993) · 5aa7dc5d
      Russ Cox authored
      to make qsort more robust:
      
      	* use "ninther" to choose pivot.
      	* use three-way partition to avoid quadratic
       	  behavior on all-one-value arrays.
      
      also add tests suggested in that paper.
      
      the immediate cause of the slowness we observed was
      in fact none of these: the recursive call was sorting
      data[0:m] instead of data[a:m].
      
      also rename package to "sort" to match convention.
      
      R=r,gri
      DELTA=358  (255 added, 21 deleted, 82 changed)
      OCL=19341
      CL=19373
      5aa7dc5d
    • Robert Griesemer's avatar
      Package-export proposal: · a1c85ed8
      Robert Griesemer authored
      - syntax change
      - missing: corresponding language
      
      DELTA=5  (2 added, 0 deleted, 3 changed)
      OCL=19221
      CL=19352
      a1c85ed8
  4. 16 Nov, 2008 1 commit
  5. 15 Nov, 2008 5 commits
  6. 14 Nov, 2008 5 commits