diff options
Diffstat (limited to 'src/cmd/link/pclntab_test.go')
-rw-r--r-- | src/cmd/link/pclntab_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/link/pclntab_test.go b/src/cmd/link/pclntab_test.go index 75d432fc5d..19953f5797 100644 --- a/src/cmd/link/pclntab_test.go +++ b/src/cmd/link/pclntab_test.go @@ -141,7 +141,7 @@ func TestPclntab(t *testing.T) { // It returns a symbol reader for pclntab, the offset of the function information // within that symbol, and the args and frame values read out of the information. func findFunc(t *testing.T, p *Prog, name string) (r *SymReader, off, args, frame int, ok bool) { - tabsym := p.Syms[goobj.SymID{Name: "pclntab"}] + tabsym := p.Syms[goobj.SymID{Name: "runtime.pclntab"}] if tabsym == nil { t.Errorf("pclntab is missing in binary") return |