Proposal: convert function definitions to prototyped form
Mark Kettenis
kettenis@wins.uva.nl
Fri Jun 2 05:26:00 GMT 2000
Date: Fri, 2 Jun 2000 00:50:19 -0700
From: Kevin Buettner <kevinb@cygnus.com>
Comma separated list with differing number of stars on the parameter
names (sparc-tdep.c):
static branch_type
-isbranch (instruction, addr, target)
- long instruction;
- CORE_ADDR addr, *target;
+isbranch (long instruction, CORE_ADDR addr, CORE_ADDR * target)
{
I guess you should tweak it some more such that it outputs
CORE_ADDR *target
instead of
CORE_ADDR * target
(note the spurious space between * and target).
Mark
More information about the Gdb
mailing list