1. 27 Jul, 2009 9 commits
  2. 26 Jul, 2009 1 commit
  3. 24 Jul, 2009 1 commit
  4. 22 Jul, 2009 3 commits
    • Russ Cox's avatar
      do not echo command in errchk, · dbba4899
      Russ Cox authored
      so that golden.out does not include
      the name of the compiler (which is
      arch-specific and shows up in diffs).
      
      R=r,iant
      DELTA=3  (0 added, 0 deleted, 3 changed)
      OCL=31980
      CL=31983
      dbba4899
    • Russ Cox's avatar
      runtime: fix init scheduling bug. · 052a66ba
      Russ Cox authored
      if there is a goroutine waiting to run
      and the init goroutine enters a system call,
      entersyscall was trying to kick off a new
      scheduler for the other goroutine, causing
      a panic (new goroutines can't run until main.main).
      
      R=r
      DELTA=32  (32 added, 0 deleted, 0 changed)
      OCL=31982
      CL=31982
      052a66ba
    • Russ Cox's avatar
      a little more 6l cleanup · 335b3855
      Russ Cox authored
      R=r
      DELTA=51  (14 added, 24 deleted, 13 changed)
      OCL=31968
      CL=31971
      335b3855
  5. 21 Jul, 2009 13 commits
  6. 20 Jul, 2009 8 commits
  7. 18 Jul, 2009 1 commit
  8. 17 Jul, 2009 4 commits
    • Austin Clements's avatar
      Gather errors in a go.scanner.ErrorList instead of printing · 51c0a841
      Austin Clements authored
      them as we go.
      
      Lots of bug fixes.  Let the parser toss illegal character and
      string literals.  Compile unary + correctly.  Allow float OP
      ideal.  Compile unary * correctly.  Implement min and max float
      values.
      
      R=rsc
      APPROVED=rsc
      DELTA=64  (29 added, 7 deleted, 28 changed)
      OCL=31811
      CL=31814
      51c0a841
    • Rob Pike's avatar
      count SHdrs and PHdrs and write them out as a unit · b63d40a5
      Rob Pike authored
      R=rsc
      DELTA=181  (93 added, 63 deleted, 25 changed)
      OCL=31802
      CL=31812
      b63d40a5
    • Robert Griesemer's avatar
      - better documentation · 821897bc
      Robert Griesemer authored
      - code cleanup
      
      R=rsc,austin
      DELTA=28  (12 added, 2 deleted, 14 changed)
      OCL=31808
      CL=31810
      821897bc
    • Ian Lance Taylor's avatar
      Recognize gccgo error message. · 33214704
      Ian Lance Taylor authored
         explicit.go:21:5: error: incompatible types in assignment (need explicit conversion)
         explicit.go:26:5: error: incompatible types in assignment (type has no methods)
         explicit.go:27:5: error: incompatible types in assignment (need explicit conversion)
         explicit.go:30:6: error: incompatible types in assignment (need explicit conversion; missing method ‘N’)
         explicit.go:33:7: error: invalid type conversion (need explicit conversion; missing method ‘N’)
         explicit.go:36:5: error: incompatible types in assignment
      
      R=rsc
      DELTA=1  (0 added, 0 deleted, 1 changed)
      OCL=31805
      CL=31807
      33214704