summaryrefslogtreecommitdiff
path: root/src/cmd/cov/main.c
AgeCommit message (Collapse)AuthorFilesLines
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-1/+1
2010-04-01runtime: turn run time errors checks into panicsRuss Cox1-2/+2
R=ken2, r CC=golang-dev http://codereview.appspot.com/871042 Committer: Russ Cox <rsc@golang.org>
2009-10-22fix build after Mercurial move.Russ Cox1-8/+4
various missing or incorrect files. R=r CC=go-dev http://go/go-review/1014004
2009-08-14rename libmach_amd64 libmachRob Pike1-1/+1
R=rsc OCL=33273 CL=33276
2008-11-20new flags to 6covRuss Cox1-11/+67
-s print source lines -n x don't print about sections < x lines long. R=r DELTA=69 (57 added, 1 deleted, 11 changed) OCL=19697 CL=19708
2008-11-19coverage tweaksRuss Cox1-4/+24
* handle new 6g shift sequence * assume 6.out R=r DELTA=24 (20 added, 0 deleted, 4 changed) OCL=19593 CL=19596
2008-11-17work around more commonly-unreachable 6g code sequences.Russ Cox1-0/+23
R=r DELTA=23 (23 added, 0 deleted, 0 changed) OCL=19405 CL=19420
2008-11-14code coverage toolRuss Cox1-0/+385
$ 6cov -g 235.go 6.out 235.go:62,62 main·main 0x27c9-0x2829 MOVL $main·.stringo(SB),AX 235.go:30,30 main·main 0x2856-0x285e ADDQ $6c0,SP $ and assorted fixes. R=r DELTA=743 (732 added, 8 deleted, 3 changed) OCL=19226 CL=19243