Commit c945d9c8 authored by Dave Cheney's avatar Dave Cheney Committed by Rob Pike

gc: fix silent sign truncation in pgen.c

Fixes #2076.

R=golang-dev, r, r, dsymonds, lucio.dere
CC=golang-dev
https://golang.org/cl/4744047
parent 9a5bb287
...@@ -149,7 +149,7 @@ compactframe(Prog* ptxt) ...@@ -149,7 +149,7 @@ compactframe(Prog* ptxt)
{ {
NodeList *ll; NodeList *ll;
Node* n; Node* n;
uint32 w; vlong w;
if (stksize == 0) if (stksize == 0)
return; return;
......
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