Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(378)

Delta Between Two Patch Sets: src/cmd/cc/godefs.c

Issue 160200044: [dev.power64] code review 160200044: build: merge default into dev.power64 (Closed)
Left Patch Set: diff -r be0c14f62257b42485019e9e1db23cf40d2e249f https://code.google.com/p/go Created 10 years, 4 months ago
Right Patch Set: diff -r be0c14f62257b42485019e9e1db23cf40d2e249f https://code.google.com/p/go Created 10 years, 4 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « src/cmd/cc/dcl.c ('k') | src/cmd/cc/pgen.c » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(Both sides are equal)
1 // cmd/cc/godefs.cc 1 // cmd/cc/godefs.cc
2 // 2 //
3 // derived from pickle.cc which itself was derived from acid.cc. 3 // derived from pickle.cc which itself was derived from acid.cc.
4 // 4 //
5 // Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved. 5 // Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved.
6 // Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net) 6 // Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
7 // Portions Copyright © 1997-1999 Vita Nuova Limited 7 // Portions Copyright © 1997-1999 Vita Nuova Limited
8 // Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuov a.com) 8 // Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuov a.com)
9 // Portions Copyright © 2004,2006 Bruce Ellis 9 // Portions Copyright © 2004,2006 Bruce Ellis
10 // Portions Copyright © 2005-2007 C H Forsyth (forsyth@terzarima.net) 10 // Portions Copyright © 2005-2007 C H Forsyth (forsyth@terzarima.net)
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 if(strchr(s->name, '$') != nil) // TODO(lvd) 356 if(strchr(s->name, '$') != nil) // TODO(lvd)
357 break; 357 break;
358 Bprint(&outbuf, "var %U\t", s->name); 358 Bprint(&outbuf, "var %U\t", s->name);
359 printtypename(t); 359 printtypename(t);
360 Bprint(&outbuf, "\n"); 360 Bprint(&outbuf, "\n");
361 break; 361 break;
362 } 362 }
363 break; 363 break;
364 } 364 }
365 } 365 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b