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:
parent
389d55fadf
commit
d604cf7808
@ -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)
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user