Skip to content

Commit

Permalink
Fix stack variable reading.
Browse files Browse the repository at this point in the history
It has to come after goroutine reading so we have stacks...
  • Loading branch information
randall77 committed Sep 20, 2017
1 parent 0a65607 commit 0f7d32a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gocore/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ func Core(proc *core.Process) (p *Program, err error) {
// Read all the data that depends on runtime globals.
p.buildVersion = p.rtGlobals["buildVersion"].String()
p.readModules()
p.readStackVars()
p.readSpans()
p.readMs()
p.readGs()
p.readStackVars()
p.readObjects()
p.typeHeap()

Expand Down

0 comments on commit 0f7d32a

Please sign in to comment.