GCC register names

Can someone tell be which registers are being used when arm-elf-gcc shows ip and fp in the listing file? Thanks.

Hello,

gcc uses the following register names (if that’s what you meant):

r0-r9 = r0-r9

sl = r10

fp = r11

ip = r12

sp = r13

lr = r14

Regards,

Dominic

That’s what I meant, thanks.