From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark Kettenis To: kevinb@cygnus.com Cc: gdb@sourceware.cygnus.com Subject: Re: Proposal: convert function definitions to prototyped form Date: Fri, 02 Jun 2000 05:26:00 -0000 Message-id: <200006021226.e52CQ2I01239@delius.kettenis.local> References: <1000602075018.ZM29997@ocotillo.lan> X-SW-Source: 2000-06/msg00015.html Date: Fri, 2 Jun 2000 00:50:19 -0700 From: Kevin Buettner 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