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

Side by Side Diff: gdb/testsuite/gdb.base/mips_pro.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/testsuite/gdb.base/memattr.exp ('k') | gdb/testsuite/gdb.base/mips_pro.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 /* Tests regarding examination of prologues. */ 1 /* Tests regarding examination of prologues. */
2 2
3 #ifdef PROTOTYPES 3 #ifdef PROTOTYPES
4 int 4 int
5 inner (int z) 5 inner (int z)
6 #else 6 #else
7 int 7 int
8 inner (z) 8 inner (z)
9 int z; 9 int z;
10 #endif 10 #endif
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 #ifdef PROTOTYPES 42 #ifdef PROTOTYPES
43 int 43 int
44 main (int argc, char **argv) 44 main (int argc, char **argv)
45 #else 45 #else
46 int 46 int
47 main (argc, argv) 47 main (argc, argv)
48 int argc; 48 int argc;
49 char **argv; 49 char **argv;
50 #endif 50 #endif
51 { 51 {
52 #ifdef usestubs
53 set_debug_traps();
54 breakpoint();
55 #endif
56 return top (-1) + top (1); 52 return top (-1) + top (1);
57 } 53 }
OLDNEW
« no previous file with comments | « gdb/testsuite/gdb.base/memattr.exp ('k') | gdb/testsuite/gdb.base/mips_pro.exp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698