diff options
author | Alan Modra <amodra@gmail.com> | 2002-11-30 08:39:46 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-11-30 08:39:46 +0000 |
commit | b34976b65aea8f33690229600bbf4527ec3118e1 (patch) | |
tree | 6411348664ef81ca2aa2e3ff325116e6e6502edf /bfd/cpu-sh.c | |
parent | 583d52d728c60410c0d39bae68ee536a7b9e7a6c (diff) | |
download | gdb-b34976b65aea8f33690229600bbf4527ec3118e1.zip gdb-b34976b65aea8f33690229600bbf4527ec3118e1.tar.gz gdb-b34976b65aea8f33690229600bbf4527ec3118e1.tar.bz2 |
s/boolean/bfd_boolean/ s/true/TRUE/ s/false/FALSE/. Simplify
comparisons of bfd_boolean vars with TRUE/FALSE. Formatting.
Diffstat (limited to 'bfd/cpu-sh.c')
-rw-r--r-- | bfd/cpu-sh.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/bfd/cpu-sh.c b/bfd/cpu-sh.c index dff2f88..3331c27 100644 --- a/bfd/cpu-sh.c +++ b/bfd/cpu-sh.c @@ -1,5 +1,5 @@ /* BFD library support routines for the Hitachi-SH architecture. - Copyright 1993, 1994, 1997, 1998, 2000, 2001 + Copyright 1993, 1994, 1997, 1998, 2000, 2001, 2002 Free Software Foundation, Inc. Hacked by Steve Chamberlain of Cygnus Support. @@ -60,7 +60,7 @@ static const bfd_arch_info_type arch_info_struct[] = "sh", /* arch_name */ "sh2", /* printable name */ 1, - false, /* not the default */ + FALSE, /* not the default */ bfd_default_compatible, bfd_default_scan, SH2_NEXT @@ -74,7 +74,7 @@ static const bfd_arch_info_type arch_info_struct[] = "sh", /* arch_name */ "sh-dsp", /* printable name */ 1, - false, /* not the default */ + FALSE, /* not the default */ bfd_default_compatible, bfd_default_scan, SH_DSP_NEXT @@ -88,7 +88,7 @@ static const bfd_arch_info_type arch_info_struct[] = "sh", /* arch_name */ "sh3", /* printable name */ 1, - false, /* not the default */ + FALSE, /* not the default */ bfd_default_compatible, bfd_default_scan, SH3_NEXT @@ -102,7 +102,7 @@ static const bfd_arch_info_type arch_info_struct[] = "sh", /* arch_name */ "sh3-dsp", /* printable name */ 1, - false, /* not the default */ + FALSE, /* not the default */ bfd_default_compatible, bfd_default_scan, SH3_DSP_NEXT @@ -116,7 +116,7 @@ static const bfd_arch_info_type arch_info_struct[] = "sh", /* arch_name */ "sh3e", /* printable name */ 1, - false, /* not the default */ + FALSE, /* not the default */ bfd_default_compatible, bfd_default_scan, SH3E_NEXT @@ -130,7 +130,7 @@ static const bfd_arch_info_type arch_info_struct[] = "sh", /* arch_name */ "sh4", /* printable name */ 1, - false, /* not the default */ + FALSE, /* not the default */ bfd_default_compatible, bfd_default_scan, SH4_NEXT @@ -144,7 +144,7 @@ static const bfd_arch_info_type arch_info_struct[] = "sh", /* arch_name */ "sh5", /* printable name */ 1, - false, /* not the default */ + FALSE, /* not the default */ bfd_default_compatible, bfd_default_scan, SH64_NEXT @@ -161,7 +161,7 @@ const bfd_arch_info_type bfd_sh_arch = "sh", /* arch_name */ "sh", /* printable name */ 1, - true, /* the default machine */ + TRUE, /* the default machine */ bfd_default_compatible, bfd_default_scan, SH_NEXT |