You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/compiler-debugging.md
+20-1Lines changed: 20 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -358,4 +358,23 @@ create a minimal working example with Godbolt. Go to
358
358
359
359
## Narrowing (Bisecting) Regressions
360
360
361
-
The [cargo-bisect-rustc](https://github.com/rust-lang-nursery/cargo-bisect-rustc) tool can be used as a quick and easy way to find exactly which PR caused a change in `rustc` behavior. It automatically downloads `rustc` PR artifacts and tests them against a project you provide until it finds the regression. You can then look at the PR to get more context on *why* it was changed. See [this tutorial](https://github.com/rust-lang-nursery/cargo-bisect-rustc/blob/master/TUTORIAL.md) on how to use it.
361
+
The [cargo-bisect-rustc][bisect] tool can be used as a quick and easy way to
362
+
find exactly which PR caused a change in `rustc` behavior. It automatically
363
+
downloads `rustc` PR artifacts and tests them against a project you provide
364
+
until it finds the regression. You can then look at the PR to get more context
365
+
on *why* it was changed. See [this tutorial][bisect-tutorial] on how to use
0 commit comments