How do I print the stack in reverse order

I am getting the stack output as

0  0x0000000000484e3f in main.main
   at ./welcome.go:11
1  0x0000000000427daa in runtime.main
   at /usr/local/go/src/runtime/proc.go:185
2  0x000000000044d741 in runtime.goexit
   at /usr/local/go/src/runtime/asm_amd64.s:2197

is it possible to print the stack output in reverse order?

i.e like that

    2  0x0000000000484e3f in main.main
       at ./welcome.go:11
    1  0x0000000000427daa in runtime.main
       at /usr/local/go/src/runtime/proc.go:185
    0  0x000000000044d741 in runtime.goexit
       at /usr/local/go/src/runtime/asm_amd64.s:2197

I am using the go debugger delve (https://github.com/derekparker/delve)

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.