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

Side by Side Diff: gdb/testsuite/gdb.base/reread1.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/reread.exp ('k') | gdb/testsuite/gdb.base/reread2.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* pr 13484 */ 1 /* pr 13484 */
2 2
3 #include <stdio.h> 3 #include <stdio.h>
4 4
5 int x; 5 int x;
6 6
7 void bar() 7 void bar()
8 { 8 {
9 x--; 9 x--;
10 } 10 }
11 11
12 void foo() 12 void foo()
13 { 13 {
14 x++; 14 x++;
15 } 15 }
16 16
17 int main() 17 int main()
18 { 18 {
19 #ifdef usestubs
20 set_debug_traps ();
21 breakpoint ();
22 #endif
23 foo(); 19 foo();
24 bar(); 20 bar();
25 return 0; 21 return 0;
26 } 22 }
OLDNEW
« no previous file with comments | « gdb/testsuite/gdb.base/reread.exp ('k') | gdb/testsuite/gdb.base/reread2.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698