Commit 0b7d87e6 authored by Yury Smolsky's avatar Yury Smolsky Committed by Brad Fitzpatrick

cmd/compile: remove dead code

This struct, global var and method are not used anywhere.

Change-Id: I83d9e93041a46904064d0fa88ab655a50149c747
Reviewed-on: https://go-review.googlesource.com/126397
Run-TryBot: Yury Smolsky <yury@smolsky.by>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
parent af29e983
......@@ -39,22 +39,6 @@ type Line struct {
Line int
}
type File struct {
lines []string
}
var fileCache = map[string]*File{}
func (f *File) Get(lineno int) (string, bool) {
if f == nil {
return "", false
}
if lineno-1 < 0 || lineno-1 >= len(f.lines) {
return "", false
}
return f.lines[lineno-1], true
}
func TestStmtLines(t *testing.T) {
if runtime.GOOS == "plan9" {
t.Skip("skipping on plan9; no DWARF symbol table in executables")
......
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