@@ -129,17 +129,11 @@ pub enum CoverageKind {
|
129 | 129 | /// Marks the point in MIR control flow represented by a evaluated condition. |
130 | 130 | /// |
131 | 131 | /// This is eventually lowered to `llvm.instrprof.mcdc.condbitmap.update` in LLVM IR. |
132 | | - /// |
133 | | - /// If this statement does not survive MIR optimizations, the condition would never be |
134 | | - /// taken as evaluated. |
135 | 132 | CondBitmapUpdate { id: ConditionId, value: bool, decision_depth: u16 }, |
136 | 133 | |
137 | 134 | /// Marks the point in MIR control flow represented by a evaluated decision. |
138 | 135 | /// |
139 | 136 | /// This is eventually lowered to `llvm.instrprof.mcdc.tvbitmap.update` in LLVM IR. |
140 | | - /// |
141 | | - /// If this statement does not survive MIR optimizations, the decision would never be |
142 | | - /// taken as evaluated. |
143 | 137 | TestVectorBitmapUpdate { bitmap_idx: u32, decision_depth: u16 }, |
144 | 138 | } |
145 | 139 | |
|