1
0
mirror of https://github.com/golang/go synced 2024-11-18 06:54:49 -07:00

cmd/gc: drop { } around single-line if-statement body

LGTM=rsc
R=rsc
CC=golang-codereviews
https://golang.org/cl/85890043
This commit is contained in:
Jan Ziak 2014-04-09 15:39:28 +02:00
parent 397f129daf
commit 8f8ada008c

View File

@ -301,9 +301,8 @@ gen(Node *n)
break; break;
case OLABEL: case OLABEL:
if(isblanksym(n->left->sym)) { if(isblanksym(n->left->sym))
break; break;
}
lab = newlab(n); lab = newlab(n);