diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2001-07-24 04:10:19 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2001-07-24 04:10:19 +0000 |
commit | 33822a8e759c9fab4599d5c942719296eef720cd (patch) | |
tree | 3a6979ffbc8c8562dadc048b359230adcff71f91 /opcodes/cris-dis.c | |
parent | a7019e234a78b290ceac8bfa0f77661cf8f58914 (diff) | |
download | gdb-33822a8e759c9fab4599d5c942719296eef720cd.zip gdb-33822a8e759c9fab4599d5c942719296eef720cd.tar.gz gdb-33822a8e759c9fab4599d5c942719296eef720cd.tar.bz2 |
* alpha-dis.c: Fix formatting.
* cris-dis.c: Likewise.
* m10300-dis.c: Likewise.
* tic54x-dis.c: Likewise.
Diffstat (limited to 'opcodes/cris-dis.c')
-rw-r--r-- | opcodes/cris-dis.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/opcodes/cris-dis.c b/opcodes/cris-dis.c index 3c8db2a..68c8899 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 '!': |