aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/stack.c
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-11-14 11:37:54 -0500
committerRuss Cox <rsc@golang.org>2014-11-14 11:37:54 -0500
commit3dcc62e1dad3c62a1c8df1b6f613f93521124764 (patch)
tree104445da5e3ecfc84f1973cef910a4ab481b2fde /src/runtime/stack.c
parent18ed947ee17be6bbd9d169256ad9382611eb3eb1 (diff)
parentc99616fc6795123ec1a6b4d742099789865bd939 (diff)
downloadgo-3dcc62e1dad3c62a1c8df1b6f613f93521124764.tar.xz
[dev.garbage] all: merge default (f38460037b72) into dev.garbage
This is the revision that dev.cc is branched from. LGTM=austin R=austin CC=golang-codereviews https://golang.org/cl/169590043
Diffstat (limited to 'src/runtime/stack.c')
-rw-r--r--src/runtime/stack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/stack.c b/src/runtime/stack.c
index a4947a53b3..ffae73a2ab 100644
--- a/src/runtime/stack.c
+++ b/src/runtime/stack.c
@@ -582,7 +582,7 @@ copystack(G *gp, uintptr newsize)
adjinfo.old = old;
adjinfo.delta = new.hi - old.hi;
cb = adjustframe;
- runtime·gentraceback(~(uintptr)0, ~(uintptr)0, 0, gp, 0, nil, 0x7fffffff, &cb, &adjinfo, false);
+ runtime·gentraceback(~(uintptr)0, ~(uintptr)0, 0, gp, 0, nil, 0x7fffffff, &cb, &adjinfo, 0);
// adjust other miscellaneous things that have pointers into stacks.
adjustctxt(gp, &adjinfo);