diff options
author | Ian Lance Taylor <ian@airs.com> | 1997-09-04 17:34:50 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1997-09-04 17:34:50 +0000 |
commit | 7dac939c43f14bbee2c6e7b652211e652e2ac1c6 (patch) | |
tree | 83959bca358983327d9ff98e3c6126f3fa6cd4fa /bfd | |
parent | 679bf0a2a4918eedc517eefbcddf7145fe9f7ac6 (diff) | |
download | gdb-7dac939c43f14bbee2c6e7b652211e652e2ac1c6.zip gdb-7dac939c43f14bbee2c6e7b652211e652e2ac1c6.tar.gz gdb-7dac939c43f14bbee2c6e7b652211e652e2ac1c6.tar.bz2 |
fix sanitizations and copyright
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/cpu-v850.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bfd/cpu-v850.c b/bfd/cpu-v850.c index f15c360..084b089 100644 --- a/bfd/cpu-v850.c +++ b/bfd/cpu-v850.c @@ -1,5 +1,5 @@ /* BFD support for the NEC V850 processor - Copyright 1994, 1995 Free Software Foundation, Inc. + Copyright 1996, 1997 Free Software Foundation, Inc. This file is part of BFD, the Binary File Descriptor library. @@ -67,8 +67,12 @@ scan (info, string) switch (number) { +/* start-sanitize-v850e */ case bfd_mach_v850e: arch = bfd_arch_v850; break; +/* end-sanitize-v850e */ +/* start-sanitize-v850eq */ case bfd_mach_v850eq: arch = bfd_arch_v850; break; +/* end-sanitize-v850eq */ default: return false; |