summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Clements <austin@google.com>2014-10-30 12:08:21 -0400
committerAustin Clements <austin@google.com>2014-10-30 12:08:21 -0400
commit3b7f57e58456639a6b324a864e815265c7ac8568 (patch)
treeca5fb3ccf4bcea241713551b314432ba3e9c3efe
parentd3be736b489539099e30ec2ae6c1f0054ca6fade (diff)
downloadgo-3b7f57e58456639a6b324a864e815265c7ac8568.tar.gz
[dev.power64] runtime: fix out-of-date comment in panic
LGTM=bradfitz R=rsc, bradfitz CC=golang-codereviews https://codereview.appspot.com/162500043
-rw-r--r--src/runtime/panic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/panic.c b/src/runtime/panic.c
index 46683b2b0..b19fdd0e1 100644
--- a/src/runtime/panic.c
+++ b/src/runtime/panic.c
@@ -69,7 +69,7 @@ runtime·recovery_m(G *gp)
// each call to deferproc.
// (The pc we're returning to does pop pop
// before it tests the return value.)
- // On the arm there are 2 saved LRs mixed in too.
+ // On the arm and power there are 2 saved LRs mixed in too.
if(thechar == '5' || thechar == '9')
gp->sched.sp = (uintptr)argp - 4*sizeof(uintptr);
else