1
0
mirror of https://github.com/golang/go synced 2024-11-22 03:14:41 -07:00

5g, 6g: comment out uses of -r

R=ken2
CC=golang-dev
https://golang.org/cl/5299043
This commit is contained in:
Russ Cox 2011-10-18 14:55:28 -04:00
parent 389d55fadf
commit d604cf7808
2 changed files with 3 additions and 3 deletions

View File

@ -356,7 +356,7 @@ regalloc(Node *n, Type *t, Node *o)
{
int i, et, fixfree, floatfree;
if(debug['r']) {
if(0 && debug['r']) {
fixfree = 0;
for(i=REGALLOC_R0; i<=REGALLOC_RMAX; i++)
if(reg[i] == 0)
@ -429,7 +429,7 @@ regfree(Node *n)
{
int i, fixfree, floatfree;
if(debug['r']) {
if(0 && debug['r']) {
fixfree = 0;
for(i=REGALLOC_R0; i<=REGALLOC_RMAX; i++)
if(reg[i] == 0)

View File

@ -506,7 +506,7 @@ genembedtramp(Type *rcvr, Type *method, Sym *newnam, int iface)
USED(iface);
if(debug['r'])
if(0 && debug['r'])
print("genembedtramp %T %T %S\n", rcvr, method, newnam);
e = method->sym;