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

Side by Side Diff: src/cmd/gc/lex.c

Issue 5314060: code review 5314060: gc: fix [568]g -V crash (Closed)
Patch Set: diff -r be0ca97757bc https://go.googlecode.com/hg/ Created 13 years, 5 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:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2009 The Go Authors. All rights reserved. 1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 #include <u.h> 5 #include <u.h>
6 #include <libc.h> 6 #include <libc.h>
7 #include "go.h" 7 #include "go.h"
8 #include "y.tab.h" 8 #include "y.tab.h"
9 #include <ar.h> 9 #include <ar.h>
10 10
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 break; 222 break;
223 ········ 223 ········
224 case 'u': 224 case 'u':
225 safemode = 1; 225 safemode = 1;
226 break; 226 break;
227 227
228 case 'V': 228 case 'V':
229 p = expstring(); 229 p = expstring();
230 if(strcmp(p, "X:none") == 0) 230 if(strcmp(p, "X:none") == 0)
231 p = ""; 231 p = "";
232 » » print("%cg version %s%s%s%s\n", thechar, getgoversion(), *p ? " " : "", p); 232 » » print("%cg version %s%s%s\n", thechar, getgoversion(), *p ? " " : "", p);
233 exits(0); 233 exits(0);
234 } ARGEND 234 } ARGEND
235 235
236 if(argc < 1) 236 if(argc < 1)
237 usage(); 237 usage();
238 238
239 // special flag to detect compilation of package runtime 239 // special flag to detect compilation of package runtime
240 compiling_runtime = debug['+']; 240 compiling_runtime = debug['+'];
241 241
242 pathname = mal(1000); 242 pathname = mal(1000);
(...skipping 1826 matching lines...) Expand 10 before | Expand all | Expand 10 after
2069 p = infile; 2069 p = infile;
2070 else 2070 else
2071 p = p+1; 2071 p = p+1;
2072 snprint(namebuf, sizeof(namebuf), "%s", p); 2072 snprint(namebuf, sizeof(namebuf), "%s", p);
2073 p = strrchr(namebuf, '.'); 2073 p = strrchr(namebuf, '.');
2074 if(p != nil) 2074 if(p != nil)
2075 *p = 0; 2075 *p = 0;
2076 outfile = smprint("%s.%c", namebuf, thechar); 2076 outfile = smprint("%s.%c", namebuf, thechar);
2077 } 2077 }
2078 } 2078 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

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