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

Side by Side Diff: gdb/f-lang.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/f-lang.h ('k') | gdb/f-valprint.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 /* Fortran language support routines for GDB, the GNU debugger. 1 /* Fortran language support routines for GDB, the GNU debugger.
2 2
3 Copyright (C) 1993-1996, 1998-2005, 2007-2012 Free Software 3 Copyright (C) 1993-1996, 1998-2005, 2007-2012 Free Software
4 Foundation, Inc. 4 Foundation, Inc.
5 5
6 Contributed by Motorola. Adapted from the C parser by Farooq Butt 6 Contributed by Motorola. Adapted from the C parser by Farooq Butt
7 (fmbutt@engage.sps.mot.com). 7 (fmbutt@engage.sps.mot.com).
8 8
9 This file is part of GDB. 9 This file is part of GDB.
10 10
(...skipping 15 matching lines...) Expand all
26 #include "symtab.h" 26 #include "symtab.h"
27 #include "gdbtypes.h" 27 #include "gdbtypes.h"
28 #include "expression.h" 28 #include "expression.h"
29 #include "parser-defs.h" 29 #include "parser-defs.h"
30 #include "language.h" 30 #include "language.h"
31 #include "f-lang.h" 31 #include "f-lang.h"
32 #include "valprint.h" 32 #include "valprint.h"
33 #include "value.h" 33 #include "value.h"
34 #include "cp-support.h" 34 #include "cp-support.h"
35 #include "charset.h" 35 #include "charset.h"
36 #include "c-lang.h"
36 37
37 38
38 /* Following is dubious stuff that had been in the xcoff reader. */ 39 /* Following is dubious stuff that had been in the xcoff reader. */
39 40
40 struct saved_fcn 41 struct saved_fcn
41 { 42 {
42 long line_offset; /* Line offset for function. */ 43 long line_offset; /* Line offset for function. */
43 struct saved_fcn *next; 44 struct saved_fcn *next;
44 }; 45 };
45 46
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 s = strchr (retval, ':'); 253 s = strchr (retval, ':');
253 if (s) 254 if (s)
254 { 255 {
255 char *last_char = &s[strlen (s) - 1]; 256 char *last_char = &s[strlen (s) - 1];
256 257
257 *s = *last_char; 258 *s = *last_char;
258 *last_char = 0; 259 *last_char = 0;
259 } 260 }
260 } 261 }
261 return retval; 262 return retval;

error: old chunk mismatch

OLDNEW
« no previous file with comments | « gdb/f-lang.h ('k') | gdb/f-valprint.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698