about summary refs log tree commit diff
path: root/compiler/rustc_middle/src
diff options
context:
space:
mode:
authorMoulins <arthur.heuillard@orange.fr>2023-06-25 19:32:40 +0200
committerMoulins <arthur.heuillard@orange.fr>2023-07-21 03:31:45 +0200
commit76c49aead6d49a993c4b2e59cceaf7d8d3324944 (patch)
tree0061384d8ed50ca481236be892a9982ebd8463e6 /compiler/rustc_middle/src
parent3c0527686644cb30291a03bdecdcfddb396765ab (diff)
downloadrust-76c49aead6d49a993c4b2e59cceaf7d8d3324944.tar.gz
rust-76c49aead6d49a993c4b2e59cceaf7d8d3324944.zip
support non-null pointer niches in CTFE
Diffstat (limited to 'compiler/rustc_middle/src')
-rw-r--r--compiler/rustc_middle/src/mir/interpret/error.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_middle/src/mir/interpret/error.rs b/compiler/rustc_middle/src/mir/interpret/error.rs
index 372452ea29a..1bcef17d73b 100644
--- a/compiler/rustc_middle/src/mir/interpret/error.rs
+++ b/compiler/rustc_middle/src/mir/interpret/error.rs
@@ -388,7 +388,6 @@ pub enum ValidationErrorKind<'tcx> {
     MutableRefInConst,
     NullFnPtr,
     NeverVal,
-    NullablePtrOutOfRange { range: WrappingRange, max_value: u128 },
     PtrOutOfRange { range: WrappingRange, max_value: u128 },
     OutOfRange { value: String, range: WrappingRange, max_value: u128 },
     UnsafeCell,