Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(492)

Side by Side Diff: bfd/cpu-d10v.c

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « bfd/cpu-crx.c ('k') | bfd/cpu-d30v.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* BFD support for the D10V processor 1 /* BFD support for the D10V processor
2 Copyright 1996, 1999, 2000, 2002, 2005, 2007, 2010 2 Copyright 1996, 1999, 2000, 2002, 2005, 2007, 2010
3 Free Software Foundation, Inc. 3 Free Software Foundation, Inc.
4 Contributed by Martin Hunt (hunt@cygnus.com). 4 Contributed by Martin Hunt (hunt@cygnus.com).
5 5
6 This file is part of BFD, the Binary File Descriptor library. 6 This file is part of BFD, the Binary File Descriptor library.
7 7
8 This program is free software; you can redistribute it and/or modify 8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by 9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or 10 the Free Software Foundation; either version 3 of the License, or
(...skipping 19 matching lines...) Expand all
30 18, /* really 16 bits in an address, but code has 18 bit range. */ 30 18, /* really 16 bits in an address, but code has 18 bit range. */
31 8, /* 8 bits in a byte. */ 31 8, /* 8 bits in a byte. */
32 bfd_arch_d10v, 32 bfd_arch_d10v,
33 bfd_mach_d10v_ts3, 33 bfd_mach_d10v_ts3,
34 "d10v", 34 "d10v",
35 "d10v:ts3", 35 "d10v:ts3",
36 4, /* Section alignment power. */ 36 4, /* Section alignment power. */
37 FALSE, 37 FALSE,
38 bfd_default_compatible, 38 bfd_default_compatible,
39 bfd_default_scan, 39 bfd_default_scan,
40 bfd_arch_default_fill,
40 0, 41 0,
41 }; 42 };
42 43
43 static const bfd_arch_info_type d10v_ts2_info = 44 static const bfd_arch_info_type d10v_ts2_info =
44 { 45 {
45 16, 46 16,
46 18, 47 18,
47 8, 48 8,
48 bfd_arch_d10v, 49 bfd_arch_d10v,
49 bfd_mach_d10v_ts2, 50 bfd_mach_d10v_ts2,
50 "d10v", 51 "d10v",
51 "d10v:ts2", 52 "d10v:ts2",
52 4, 53 4,
53 FALSE, 54 FALSE,
54 bfd_default_compatible, 55 bfd_default_compatible,
55 bfd_default_scan, 56 bfd_default_scan,
57 bfd_arch_default_fill,
56 & d10v_ts3_info, 58 & d10v_ts3_info,
57 }; 59 };
58 60
59 const bfd_arch_info_type bfd_d10v_arch = 61 const bfd_arch_info_type bfd_d10v_arch =
60 { 62 {
61 16, 63 16,
62 18, 64 18,
63 8, 65 8,
64 bfd_arch_d10v, 66 bfd_arch_d10v,
65 bfd_mach_d10v, 67 bfd_mach_d10v,
66 "d10v", 68 "d10v",
67 "d10v", 69 "d10v",
68 4, 70 4,
69 TRUE, 71 TRUE,
70 bfd_default_compatible, 72 bfd_default_compatible,
71 bfd_default_scan, 73 bfd_default_scan,
74 bfd_arch_default_fill,
72 & d10v_ts2_info, 75 & d10v_ts2_info,
73 }; 76 };
OLDNEW
« no previous file with comments | « bfd/cpu-crx.c ('k') | bfd/cpu-d30v.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698