diff options
author | David Edelsohn <dje.gcc@gmail.com> | 1996-04-17 21:21:09 +0000 |
---|---|---|
committer | David Edelsohn <dje.gcc@gmail.com> | 1996-04-17 21:21:09 +0000 |
commit | ec680fc594b6640c13f2ca576fe686a52d985f87 (patch) | |
tree | 0055d7e6388ac63687e382c63615ded6cf3dc7bf /opcodes/sparc-dis.c | |
parent | f97fca7872e4a9636b47eefb4f64f5bdc2802443 (diff) | |
download | gdb-ec680fc594b6640c13f2ca576fe686a52d985f87.zip gdb-ec680fc594b6640c13f2ca576fe686a52d985f87.tar.gz gdb-ec680fc594b6640c13f2ca576fe686a52d985f87.tar.bz2 |
* saprc-dis.c (compute_arch_mask): Replace ANSI style def with K&R.
Diffstat (limited to 'opcodes/sparc-dis.c')
-rw-r--r-- | opcodes/sparc-dis.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/opcodes/sparc-dis.c b/opcodes/sparc-dis.c index 1815881..ee331f3 100644 --- a/opcodes/sparc-dis.c +++ b/opcodes/sparc-dis.c @@ -699,7 +699,8 @@ print_insn_sparc (memaddr, info) /* Given BFD mach number, return a mask of SPARC_OPCODE_ARCH_FOO values. */ static int -compute_arch_mask (unsigned long mach) +compute_arch_mask (mach) + unsigned long mach; { switch (mach) { |