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

Side by Side Diff: gdb/testsuite/gdb.base/gdbvars.c

Issue 124383005: GDB 7.6.50 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@upstream
Patch Set: Created 6 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/testsuite/gdb.base/gdbindex-stabs-dwarf.c ('k') | gdb/testsuite/gdb.base/gdbvars.exp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Simple program to help exercise gdb's convenience variables. */ 1 /* Simple program to help exercise gdb's convenience variables. */
2 2
3 typedef void *ptr; 3 typedef void *ptr;
4 4
5 ptr p = &p; 5 ptr p = &p;
6 6
7 static void
8 foo_void (void)
9 {
10 }
11
12 static int
13 foo_int (void)
14 {
15 return 0;
16 }
17
7 int 18 int
8 main () 19 main ()
9 { 20 {
10 p = &p; 21 p = &p;
11 return 0; 22 return 0;
12 } 23 }
OLDNEW
« no previous file with comments | « gdb/testsuite/gdb.base/gdbindex-stabs-dwarf.c ('k') | gdb/testsuite/gdb.base/gdbvars.exp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698