1
0
mirror of https://github.com/golang/go synced 2024-11-25 10:57:58 -07:00

gc: enable inlining by default

R=lvd, r
CC=golang-dev
https://golang.org/cl/5531058
This commit is contained in:
Russ Cox 2012-01-10 20:08:53 -08:00
parent d03bfa8e5b
commit 4a6b07f235
2 changed files with 8 additions and 1 deletions

View File

@ -235,6 +235,13 @@ main(int argc, char *argv[])
exits(0); exits(0);
} ARGEND } ARGEND
// enable inlining. for now:
// default: inlining on. (debug['l'] == 1)
// -l: inlining off (debug['l'] == 0)
// -ll, -lll: inlining on again, with extra debugging (debug['l'] > 1)
if(debug['l'] <= 1)
debug['l'] = 1 - debug['l'];
if(argc < 1) if(argc < 1)
usage(); usage();

View File

@ -1,4 +1,4 @@
// errchk -0 $G -m $D/$F.go // errchk -0 $G -m -l $D/$F.go
// Copyright 2010 The Go Authors. All rights reserved. // Copyright 2010 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style