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

Side by Side Diff: gdb/testsuite/gdb.base/twice.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/trace-commands.exp ('k') | gdb/testsuite/gdb.base/twice.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 #include <stdio.h> 1 #include <stdio.h>
2 int nothing () 2 int nothing ()
3 3
4 { 4 {
5 int x = 3 ; 5 int x = 3 ;
6 return x ; 6 return x ;
7 } 7 }
8 8
9 9
10 int main () 10 int main ()
11 11
12 { 12 {
13 int y ; 13 int y ;
14 #ifdef usestubs
15 set_debug_traps();
16 breakpoint();
17 #endif
18 y = nothing () ; 14 y = nothing () ;
19 printf ("hello\n") ; 15 printf ("hello\n") ;
20 return 0; 16 return 0;
21 } 17 }
OLDNEW
« no previous file with comments | « gdb/testsuite/gdb.base/trace-commands.exp ('k') | gdb/testsuite/gdb.base/twice.exp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698