Commit e24910d0 authored by Kyle Consalus's avatar Kyle Consalus Committed by Russ Cox

gc: brace nit from last review

R=rsc
CC=golang-dev
https://golang.org/cl/1997045
parent b279c048
......@@ -477,11 +477,10 @@ algtype(Type *t)
if(issimple[t->etype] || isptr[t->etype] || iscomplex[t->etype] ||
t->etype == TCHAN || t->etype == TFUNC || t->etype == TMAP) {
if (t->width == widthptr) {
if(t->width == widthptr)
a = AMEMWORD;
} else {
else
a = AMEM; // just bytes (int, ptr, etc)
}
} else if(t->etype == TSTRING)
a = ASTRING; // string
else if(isnilinter(t))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment