Commit c8bce425 authored by Rob Pike's avatar Rob Pike

fix comment

SVN=126931
parent 44f65c8f
...@@ -30,7 +30,7 @@ traceback(uint8 *pc, uint8 *sp, void* r15) ...@@ -30,7 +30,7 @@ traceback(uint8 *pc, uint8 *sp, void* r15)
for(;;){ for(;;){
callpc = pc; callpc = pc;
if((uint8*)morestack2 == pc) { if((uint8*)morestack2 == pc) {
// call site in _morestack(); pop to earlier stack block to get true caller // call site is morestack2(); pop to earlier stack block to get true caller
stktop = (Stktop*)g.stackbase; stktop = (Stktop*)g.stackbase;
g.stackbase = stktop->oldbase; g.stackbase = stktop->oldbase;
g.stackguard = stktop->oldguard; g.stackguard = stktop->oldguard;
......
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