From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tom Tromey To: Insight List Subject: balloon -vs- enums Date: Sat, 22 Dec 2001 15:22:00 -0000 Message-ID: <87ofkqde7p.fsf@creche.redhat.com> X-SW-Source: 2001-q4/msg00435.html Message-ID: <20011222152200.iEr7ZfuQSBtttOxv3FnYlrEKC4apGGN4xFuxo9wqz7A@z> This is a line from gcj: 2659 && reloc->kind == OPCODE_goto_w Here, `reloc->kind' is an `int', and OPCODE_goto_w is defined in an enum. If I hold the mouse over the latter, the balloon comes up and says: OPCODE_goto_w=OPCODE_goto_w It would be nice if instead insight showed: OPCODE_goto_w=(enum java_opcode) 200 Or something similar. Tom