| ... | @@ -2304,6 +2304,7 @@ fn buildOutputType( | ... | @@ -2304,6 +2304,7 @@ fn buildOutputType( |
| 2304 | last_cmd = cmd; | 2304 | last_cmd = cmd; |
| 2305 | switch (cmd) { | 2305 | switch (cmd) { |
| 2306 | .update => { | 2306 | .update => { |
| | 2307 | tracy.frameMark(); |
| 2307 | if (output_mode == .Exe) { | 2308 | if (output_mode == .Exe) { |
| 2308 | try comp.makeBinFileWritable(); | 2309 | try comp.makeBinFileWritable(); |
| 2309 | } | 2310 | } |
| ... | @@ -2316,6 +2317,7 @@ fn buildOutputType( | ... | @@ -2316,6 +2317,7 @@ fn buildOutputType( |
| 2316 | try stderr.writeAll(repl_help); | 2317 | try stderr.writeAll(repl_help); |
| 2317 | }, | 2318 | }, |
| 2318 | .run => { | 2319 | .run => { |
| | 2320 | tracy.frameMark(); |
| 2319 | try runOrTest( | 2321 | try runOrTest( |
| 2320 | comp, | 2322 | comp, |
| 2321 | gpa, | 2323 | gpa, |
| ... | @@ -2332,6 +2334,7 @@ fn buildOutputType( | ... | @@ -2332,6 +2334,7 @@ fn buildOutputType( |
| 2332 | ); | 2334 | ); |
| 2333 | }, | 2335 | }, |
| 2334 | .update_and_run => { | 2336 | .update_and_run => { |
| | 2337 | tracy.frameMark(); |
| 2335 | if (output_mode == .Exe) { | 2338 | if (output_mode == .Exe) { |
| 2336 | try comp.makeBinFileWritable(); | 2339 | try comp.makeBinFileWritable(); |
| 2337 | } | 2340 | } |