...

Source file src/github.com/chenzhuoyu/iasm/repl/sym.go

Documentation: github.com/chenzhuoyu/iasm/repl

     1  package repl
     2  
     3  import (
     4      `runtime`
     5  )
     6  
     7  func symbol(addr uint64) string {
     8      return runtime.FuncForPC(uintptr(addr)).Name()
     9  }
    10  

View as plain text