From 13b3c542a29b5044d0cd72c072a7af64303936c4 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Tue, 24 Jul 2001 04:10:19 +0000 Subject: * alpha-dis.c: Fix formatting. * cris-dis.c: Likewise. * m10300-dis.c: Likewise. * tic54x-dis.c: Likewise. --- opcodes/cris-dis.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'opcodes/cris-dis.c') diff --git a/opcodes/cris-dis.c b/opcodes/cris-dis.c index 3c8db2a122..68c8899740 100644 --- a/opcodes/cris-dis.c +++ b/opcodes/cris-dis.c @@ -1,5 +1,5 @@ /* Disassembler code for CRIS. - Copyright 2000 Free Software Foundation, Inc. + Copyright 2000, 2001 Free Software Foundation, Inc. Contributed by Axis Communications AB, Lund, Sweden. Written by Hans-Peter Nilsson. @@ -124,7 +124,7 @@ number_of_bits (val) { int bits; - for (bits = 0; val != 0; val &= val-1) + for (bits = 0; val != 0; val &= val - 1) bits++; return bits; @@ -372,7 +372,7 @@ cris_constraint (cs, insn, prefix_insn) int prefix_ok = 0; const char *s; - for (s = cs; *s; s++) + for (s = cs; *s; s++) switch (*s) { case '!': -- cgit v1.2.1