Mercurial > hg > CbC > old > device
annotate .gdbinit @ 682:639db8597a58
decl_data optimization
local_struct_static should be abandoned
author | kono |
---|---|
date | Mon, 01 Oct 2007 17:54:47 +0900 |
parents | f536897fa3cb |
children | 6e2f1e7f9fc3 |
rev | line source |
---|---|
666 | 1 tb main |
32 | 2 define regs |
666 | 3 call (void)printf("eax=%08x ebx=%08x ecx=%08x edx=%08x\nesi=%08x edi=%08x ebp=%08x esp=%08x eip=%08x\n",$eax,$ebx,$ecx,$edx,$esi,$edi,$ebp,$esp,$eip) |
116 | 4 end |
32 | 5 define si |
6 stepi | |
7 regs | |
666 | 8 x/1i $eip |
32 | 9 end |
10 define ni | |
11 nexti | |
51 | 12 regs |
666 | 13 x/1i $eip |
32 | 14 end |
39 | 15 b errmsg |
680 | 16 # r -s test/tmp7.c |
682 | 17 # r -s test/code-gen-all.c |
666 | 18 # r -s mc-code-powerpc.c |
682 | 19 # r -s test/strinit.c |
20 r -s -DINLINE=inline test/strinit.c |