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

Side by Side Diff: gdb/testsuite/gdb.linespec/lspec.cc

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.linespec/ls-errs.exp ('k') | gdb/testsuite/gdb.linespec/macro-relative.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 #include "lspec.h" 1 #include "lspec.h"
2 2
3 static int dupname (int x) { label: return x; } 3 static int dupname (int x) { label: return x; }
4 4
5 int NameSpace::overload() 5 int NameSpace::overload()
6 { 6 {
7 return 23; 7 return 23;
8 } 8 }
9 9
10 int body_elsewhere() 10 int body_elsewhere()
11 { 11 {
12 int x = 5; 12 int x = 5;» /* body_elsewhere marker */
13 #include "body.h" 13 #include "body.h"
14 } 14 }
15 15
16 int main() 16 int main()
17 { 17 {
18 return dupname(0) + m(0) + n(0) + f1() + f2() + body_elsewhere(); 18 return dupname(0) + m(0) + n(0) + f1() + f2() + body_elsewhere();
19 } 19 }
OLDNEW
« no previous file with comments | « gdb/testsuite/gdb.linespec/ls-errs.exp ('k') | gdb/testsuite/gdb.linespec/macro-relative.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698