aboutsummaryrefslogtreecommitdiff
path: root/include/coff
diff options
context:
space:
mode:
authorSvein Seldal <svein@dev.seldal.com>2003-04-04 08:15:15 +0000
committerSvein Seldal <svein@dev.seldal.com>2003-04-04 08:15:15 +0000
commitbe33c5dd4d463877c8412bfc0416a75d27008598 (patch)
tree405ef40be6cbbe36c27871d4b8282dc174bb22a3 /include/coff
parent36018d2e5a9890d2a2564a74c319b76c1bde0ed1 (diff)
downloadgdb-be33c5dd4d463877c8412bfc0416a75d27008598.zip
gdb-be33c5dd4d463877c8412bfc0416a75d27008598.tar.gz
gdb-be33c5dd4d463877c8412bfc0416a75d27008598.tar.bz2
Namespace cleanup for the tic4x target. Replace s/c4x/tic4x/ and s/c3x/tic3x/. 2003 copyright update
Diffstat (limited to 'include/coff')
-rw-r--r--include/coff/tic4x.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/coff/tic4x.h b/include/coff/tic4x.h
index 083cc3b..0d224b2 100644
--- a/include/coff/tic4x.h
+++ b/include/coff/tic4x.h
@@ -1,7 +1,7 @@
/* TI COFF information for Texas Instruments TMS320C4X/C3X.
This file customizes the settings in coff/ti.h.
- Copyright 2002 Free Software Foundation, Inc.
+ Copyright 2002, 2003 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -31,12 +31,12 @@
#define TICOFF_DEFAULT_MAGIC TICOFF2MAGIC
#define TICOFF_TARGET_MACHINE_GET(FLAGS) \
- (((FLAGS) & F_VERS) ? bfd_mach_c4x : bfd_mach_c3x)
+ (((FLAGS) & F_VERS) ? bfd_mach_tic4x : bfd_mach_tic3x)
#define TICOFF_TARGET_MACHINE_SET(FLAGSP, MACHINE) \
do \
{ \
- if ((MACHINE) == bfd_mach_c4x) \
+ if ((MACHINE) == bfd_mach_tic4x) \
*(FLAGSP) |= F_VERS; \
} \
while (0)