diff options
Diffstat (limited to 'libgo/runtime/go-caller.c')
-rw-r--r-- | libgo/runtime/go-caller.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libgo/runtime/go-caller.c b/libgo/runtime/go-caller.c index f2bebeb..dda3960 100644 --- a/libgo/runtime/go-caller.c +++ b/libgo/runtime/go-caller.c @@ -36,7 +36,7 @@ static symvalfn_type symvalfn; function/file/line information. */ void RegisterDebugLookup (infofn_type, symvalfn_type) - __asm__ ("libgo_runtime.runtime.RegisterDebugLookup"); + __asm__ ("runtime.RegisterDebugLookup"); void RegisterDebugLookup (infofn_type pi, symvalfn_type ps) @@ -76,9 +76,9 @@ struct caller_ret _Bool ok; }; -struct caller_ret Caller (int n) asm ("libgo_runtime.runtime.Caller"); +struct caller_ret Caller (int n) asm ("runtime.Caller"); -Func *FuncForPC (uintptr_t) asm ("libgo_runtime.runtime.FuncForPC"); +Func *FuncForPC (uintptr_t) asm ("runtime.FuncForPC"); /* Implement runtime.Caller. */ @@ -132,7 +132,7 @@ struct funcline_go_return struct funcline_go_return runtime_funcline_go (Func *f, uintptr targetpc) - __asm__ ("libgo_runtime.runtime.funcline_go"); + __asm__ ("runtime.funcline_go"); struct funcline_go_return runtime_funcline_go (Func *f __attribute__((unused)), uintptr targetpc) |