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

Side by Side Diff: gdb/testsuite/gdb.base/skip.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/sizeof.exp ('k') | gdb/testsuite/gdb.base/skip.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 int foo(); 1 int foo();
2 int bar(); 2 int bar();
3 int baz(int, int); 3 int baz(int);
4 4
5 int main() 5 int main()
6 { 6 {
7 return baz(foo(), bar()); 7 /* Use comma operator to sequence evaluation of bar and foo. */
8 return baz((bar(), foo()));
8 } 9 }
9 10
10 int foo() 11 int foo()
11 { 12 {
12 return 0; 13 return 0;
13 } 14 }
OLDNEW
« no previous file with comments | « gdb/testsuite/gdb.base/sizeof.exp ('k') | gdb/testsuite/gdb.base/skip.exp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698