Commit ae027f52 authored by Shenghou Ma's avatar Shenghou Ma

cmd/cc, cmd/gc: set ctxt->debugvlog with debug['v']

LGTM=rsc
R=rsc, iant
CC=golang-codereviews
https://golang.org/cl/118610043
parent 45bd2f8c
......@@ -203,6 +203,7 @@ main(int argc, char *argv[])
flagparse(&argc, &argv, usage);
ctxt->debugasm = debug['S'];
ctxt->debugvlog = debug['v'];
if(argc < 1 && outfile == 0)
usage();
......
......@@ -319,6 +319,7 @@ main(int argc, char *argv[])
flagparse(&argc, &argv, usage);
ctxt->debugasm = debug['S'];
ctxt->debugvlog = debug['v'];
if(argc < 1)
usage();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment