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

Side by Side Diff: gdb/mdebugread.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 | « gdb/main.c ('k') | gdb/mem-break.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
None
OLDNEW
1 /* Read a symbol table in ECOFF format (Third-Eye). 1 /* Read a symbol table in ECOFF format (Third-Eye).
2 2
3 Copyright (C) 1986-1987, 1989-2004, 2007-2012 Free Software 3 Copyright (C) 1986-1987, 1989-2004, 2007-2012 Free Software
4 Foundation, Inc. 4 Foundation, Inc.
5 5
6 Original version contributed by Alessandro Forin (af@cs.cmu.edu) at 6 Original version contributed by Alessandro Forin (af@cs.cmu.edu) at
7 CMU. Major work by Per Bothner, John Gilmore and Ian Lance Taylor 7 CMU. Major work by Per Bothner, John Gilmore and Ian Lance Taylor
8 at Cygnus Support. 8 at Cygnus Support.
9 9
10 This file is part of GDB. 10 This file is part of GDB.
(...skipping 1026 matching lines...) Expand 10 before | Expand all | Expand 10 after
1037 This might do the wrong thing for an enum with one or two 1037 This might do the wrong thing for an enum with one or two
1038 enumerators and gcc -gcoff -fshort-enums, but these cases 1038 enumerators and gcc -gcoff -fshort-enums, but these cases
1039 are hopefully rare enough. 1039 are hopefully rare enough.
1040 Alpha cc -migrate has a sh.value field of zero, we adjust 1040 Alpha cc -migrate has a sh.value field of zero, we adjust
1041 that too. */ 1041 that too. */
1042 if (TYPE_LENGTH (t) == TYPE_NFIELDS (t) 1042 if (TYPE_LENGTH (t) == TYPE_NFIELDS (t)
1043 || TYPE_LENGTH (t) == 0) 1043 || TYPE_LENGTH (t) == 0)
1044 TYPE_LENGTH (t) = gdbarch_int_bit (gdbarch) / HOST_CHAR_BIT; 1044 TYPE_LENGTH (t) = gdbarch_int_bit (gdbarch) / HOST_CHAR_BIT;
1045 for (ext_tsym = ext_sh + external_sym_size; 1045 for (ext_tsym = ext_sh + external_sym_size;
1046 ; 1046 ;

error: old chunk mismatch

OLDNEW
« no previous file with comments | « gdb/main.c ('k') | gdb/mem-break.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698