diff options
| author | Rich Kadel <richkadel@google.com> | 2020-11-23 19:11:56 -0800 |
|---|---|---|
| committer | Rich Kadel <richkadel@google.com> | 2020-11-23 19:15:10 -0800 |
| commit | 5d5dc4c9d86499854a50a54a8dab73c180f7cbbc (patch) | |
| tree | 4f9479c74e307374f89b2b64b27f8ee0d0ae92fd /compiler/rustc_middle/src/mir | |
| parent | 1d8c381c014f202eeae59994b9b664841e91cb72 (diff) | |
| download | rust-5d5dc4c9d86499854a50a54a8dab73c180f7cbbc.tar.gz rust-5d5dc4c9d86499854a50a54a8dab73c180f7cbbc.zip | |
Updated links to LLVM 11 docs and types
Diffstat (limited to 'compiler/rustc_middle/src/mir')
| -rw-r--r-- | compiler/rustc_middle/src/mir/coverage.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/rustc_middle/src/mir/coverage.rs b/compiler/rustc_middle/src/mir/coverage.rs index 6b46d7c497d..72050013854 100644 --- a/compiler/rustc_middle/src/mir/coverage.rs +++ b/compiler/rustc_middle/src/mir/coverage.rs @@ -21,9 +21,9 @@ rustc_index::newtype_index! { impl ExpressionOperandId { /// An expression operand for a "zero counter", as described in the following references: /// - /// * <https://github.com/rust-lang/llvm-project/blob/llvmorg-8.0.0/llvm/docs/CoverageMappingFormat.rst#counter> - /// * <https://github.com/rust-lang/llvm-project/blob/llvmorg-8.0.0/llvm/docs/CoverageMappingFormat.rst#tag> - /// * <https://github.com/rust-lang/llvm-project/blob/llvmorg-8.0.0/llvm/docs/CoverageMappingFormat.rst#counter-expressions> + /// * https://github.com/rust-lang/llvm-project/blob/rustc/11.0-2020-10-12/llvm/docs/CoverageMappingFormat.rst#counter + /// * https://github.com/rust-lang/llvm-project/blob/rustc/11.0-2020-10-12/llvm/docs/CoverageMappingFormat.rst#tag + /// * https://github.com/rust-lang/llvm-project/blob/rustc/11.0-2020-10-12/llvm/docs/CoverageMappingFormat.rst#counter-expressions /// /// This operand can be used to count two or more separate code regions with a single counter, /// if they run sequentially with no branches, by injecting the `Counter` in a `BasicBlock` for |
