From 225a4bf9222dbef88dc6fbefe437602e55decf1b Mon Sep 17 00:00:00 2001 From: Andreas Liljeqvist Date: Mon, 23 Aug 2021 13:56:28 +0200 Subject: [PATCH] Removed fixed fixme --- compiler/rustc_target/src/abi/mod.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/compiler/rustc_target/src/abi/mod.rs b/compiler/rustc_target/src/abi/mod.rs index 07687a4b104..b30111c6788 100644 --- a/compiler/rustc_target/src/abi/mod.rs +++ b/compiler/rustc_target/src/abi/mod.rs @@ -1011,9 +1011,6 @@ impl Niche { let start = v.end.wrapping_add(1) & max_value; let end = v.end.wrapping_add(count) & max_value; - // If the `end` of our range is inside the valid range, - // then we ran out of invalid values. - // FIXME(eddyb) abstract this with a wraparound range type. if v.contains(end) { return None; }