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

Side by Side Diff: gdb/testsuite/gdb.base/exprs.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/expand-psymtabs.exp ('k') | gdb/testsuite/gdb.base/exprs.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 #ifdef PROTOTYPES 1 #ifdef PROTOTYPES
2 int main (int argc, char **argv, char **envp) 2 int main (int argc, char **argv, char **envp)
3 #else 3 #else
4 main (argc, argv, envp) 4 main (argc, argv, envp)
5 int argc; 5 int argc;
6 char **argv; 6 char **argv;
7 char **envp; 7 char **envp;
8 #endif 8 #endif
9 { 9 {
10 extern void dummy(); 10 extern void dummy();
11 #ifdef usestubs
12 set_debug_traps();
13 breakpoint();
14 #endif
15 dummy(); 11 dummy();
16 return 0; 12 return 0;
17 13
18 } 14 }
19 15
20 /* We put main() right up front so its line number doesn't keep changing. */ 16 /* We put main() right up front so its line number doesn't keep changing. */
21 17
22 /* 18 /*
23 * Test file with lots of different types, for testing the 19 * Test file with lots of different types, for testing the
24 * "whatis" command. 20 * "whatis" command.
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 v_double_pointer = &v_double; 246 v_double_pointer = &v_double;
251 247
252 color = red; 248 color = red;
253 clunker = porsche; 249 clunker = porsche;
254 250
255 u_link.next = s_link; 251 u_link.next = s_link;
256 252
257 v_struct2.v_int_member = v_struct1.v_int_member; 253 v_struct2.v_int_member = v_struct1.v_int_member;
258 v_union2.v_short_member = v_union.v_short_member; 254 v_union2.v_short_member = v_union.v_short_member;
259 } 255 }
OLDNEW
« no previous file with comments | « gdb/testsuite/gdb.base/expand-psymtabs.exp ('k') | gdb/testsuite/gdb.base/exprs.exp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698