Commit 16bea49e authored by Jan Ziak's avatar Jan Ziak Committed by Shenghou Ma

cmd/cc: map C int to int32 in Go defs

R=golang-dev, minux.ma, rsc
CC=golang-dev
https://golang.org/cl/6621052
parent ed0c5dd1
...@@ -188,10 +188,10 @@ printtypename(Type *t) ...@@ -188,10 +188,10 @@ printtypename(Type *t)
switch(t->etype) { switch(t->etype) {
case TINT: case TINT:
Bprint(&outbuf, "int"); Bprint(&outbuf, "int32");
break; break;
case TUINT: case TUINT:
Bprint(&outbuf, "uint"); Bprint(&outbuf, "uint32");
break; break;
case TCHAR: case TCHAR:
Bprint(&outbuf, "int8"); Bprint(&outbuf, "int8");
......
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