1. 11 Nov, 2011 5 commits
    • Mikio Hara's avatar
      syscall: regenerate z-files for freebsd, openbsd · ca4708fa
      Mikio Hara authored
      R=golang-dev, rsc
      CC=golang-dev
      https://golang.org/cl/5375057
      ca4708fa
    • Andrew Balholm's avatar
      html: ignore <col> tag outside tables · 0a61c846
      Andrew Balholm authored
      Pass tests1.dat, test 109:
      <table><col><tbody><col><tr><col><td><col></table><col>
      
      | <html>
      |   <head>
      |   <body>
      |     <table>
      |       <colgroup>
      |         <col>
      |       <tbody>
      |       <colgroup>
      |         <col>
      |       <tbody>
      |         <tr>
      |       <colgroup>
      |         <col>
      |       <tbody>
      |         <tr>
      |           <td>
      |       <colgroup>
      |         <col>
      
      Also pass test 110:
      <table><colgroup><tbody><colgroup><tr><colgroup><td><colgroup></table><colgroup>
      
      R=nigeltao
      CC=golang-dev
      https://golang.org/cl/5369069
      0a61c846
    • Andrew Balholm's avatar
      html: parse column groups · 83f61a27
      Andrew Balholm authored
      Pass tests1.dat, test 108:
      <table><colgroup><col><colgroup><col><col><col><colgroup><col><col><thead><tr><td></table>
      
      | <html>
      |   <head>
      |   <body>
      |     <table>
      |       <colgroup>
      |         <col>
      |       <colgroup>
      |         <col>
      |         <col>
      |         <col>
      |       <colgroup>
      |         <col>
      |         <col>
      |       <thead>
      |         <tr>
      |           <td>
      
      R=nigeltao
      CC=golang-dev
      https://golang.org/cl/5369061
      83f61a27
    • Russ Cox's avatar
      runtime, syscall: convert from godefs to cgo · dd2abe51
      Russ Cox authored
      R=golang-dev, mikioh.mikioh, r
      CC=golang-dev
      https://golang.org/cl/5348052
      dd2abe51
    • Russ Cox's avatar
      godefs: delete, replaced by cgo -godefs · 879a1c6a
      Russ Cox authored
      Godefs was a C program that ran gcc and then parsed the
      stabs debugging information in the resulting object file to
      generate C or Go code for bootstrapping as part of
      package runtime or package syscall.
      
      Cgo does the same work, but using the dwarf debugging
      information.  Add -godefs and -cdefs options to cgo that
      mimic godefs's output, albeit with different input
      (a Go program, not a C program).
      
      This has been a "nice to have" for a while but was forced
      by Apple removing stabs debugging output from their
      latest compilers.
      
      Fixes #835.
      Fixes #2338.
      
      R=golang-dev, bradfitz, r, dave, iant
      CC=golang-dev
      https://golang.org/cl/5367043
      879a1c6a
  2. 10 Nov, 2011 8 commits
  3. 09 Nov, 2011 27 commits