plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit 89f6ec8e90179a44f85c83708f7f9c6d6573692f
parent 929ba9b98f7ded89476ad6bce547e15981bc723b
Author: rsc <devnull@localhost>
Date:   Tue, 20 Apr 2004 00:55:31 +0000

yet more []

Diffstat:
Msrc/libmach/mach386.c | 16++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/libmach/mach386.c b/src/libmach/mach386.c @@ -1609,14 +1609,14 @@ bprint(Instr *ip, char *fmt, ...) #define ONAME(ip) "" static char *reg[] = { -[AX] "AX", -[CX] "CX", -[DX] "DX", -[BX] "BX", -[SP] "SP", -[BP] "BP", -[SI] "SI", -[DI] "DI", + "AX", /* 0 */ + "CX", /* 1 */ + "DX", /* 2 */ + "BX", /* 3 */ + "SP", /* 4 */ + "BP", /* 5 */ + "SI", /* 6 */ + "DI", /* 7 */ }; static char *breg[] = { "AL", "CL", "DL", "BL", "AH", "CH", "DH", "BH" };