flyingbin
flyingbin

Reputation: 1097

Use gdb to debug assembly, how to skip a call

I'm debugging assembly code. I use stepi, but it would go into callees. How to skip the call instructions as using "n" when source code is available?

Upvotes: 1

Views: 904

Answers (1)

Alan Curry
Alan Curry

Reputation: 14711

Pretty simple: nexti is to stepi as next is to step

Upvotes: 2

Related Questions