summaryrefslogtreecommitdiff
path: root/src/pkg/debug/elf/file_test.go
AgeCommit message (Collapse)AuthorFilesLines
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+241
2011-09-13Imported Upstream version 60Ondřej Surý1-180/+0
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý1-3/+3
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-75/+75
2009-12-15 1) Change default gofmt default settings forRobert Griesemer1-30/+30
parsing and printing to new syntax. Use -oldparser to parse the old syntax, use -oldprinter to print the old syntax. 2) Change default gofmt formatting settings to use tabs for indentation only and to use spaces for alignment. This will make the code alignment insensitive to an editor's tabwidth. Use -spaces=false to use tabs for alignment. 3) Manually changed src/exp/parser/parser_test.go so that it doesn't try to parse the parser's source files using the old syntax (they have new syntax now). 4) gofmt -w src misc test/bench 2nd set of files. R=rsc CC=golang-dev http://codereview.appspot.com/179067
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer1-3/+3
R=rsc, r http://go/go-review/1025029
2009-11-02Fix cgo for GCC 4.4Adam Langley1-0/+51
Firstly, with -Werror, GCC switched to printing warnings starting with "error:". Widening the string matches solves this as the messages are otherwise unchanged. Secondly, GCC 4.4 outputs DWARF sections with with NUL bytes in all the offsets and requires the relocation section for .debug_info to be processed in order to result in valid DWARF data. Thus we add minimal handling for relocation sections, which is sufficient for our needs. BUG=1 Fixes issue 1. R=rsc, iant CC=go-dev http://go/go-review/1017003
2009-10-20base64 -> encoding/base64Russ Cox1-1/+1
base85 -> encoding/ascii85, encoding/git85 debug/binary -> encoding/binary R=r DELTA=3190 (1884 added, 1297 deleted, 9 changed) OCL=35923 CL=35929
2009-10-08more lgtm files from gofmtRuss Cox1-16/+16
R=gri OCL=35485 CL=35488
2009-10-06gofmt on crypto, debugRuss Cox1-17/+17
R=gri DELTA=2560 (127 added, 177 deleted, 2256 changed) OCL=35388 CL=35395
2009-08-31elf file parserRuss Cox1-0/+129
R=austin DELTA=448 (447 added, 0 deleted, 1 changed) OCL=34139 CL=34150