Skip to content

Commit a566f90

Browse files
committed
enable these assertions in release builds
1 parent c3342b4 commit a566f90

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

compiler/rustc_const_eval/src/interpret/eval_context.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1217,7 +1217,7 @@ impl<'a, 'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> std::fmt::Debug
12171217
fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
12181218
match self.place {
12191219
Place::Local { local, offset, locals_addr } => {
1220-
debug_assert_eq!(locals_addr, self.ecx.frame().locals_addr());
1220+
assert_eq!(locals_addr, self.ecx.frame().locals_addr());
12211221
let mut allocs = Vec::new();
12221222
write!(fmt, "{local:?}")?;
12231223
if let Some(offset) = offset {

compiler/rustc_const_eval/src/interpret/operand.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
663663
Left(mplace) => Ok(mplace.into()),
664664
Right((local, offset, locals_addr)) => {
665665
debug_assert!(place.layout.is_sized()); // only sized locals can ever be `Place::Local`.
666-
debug_assert_eq!(locals_addr, self.frame().locals_addr());
666+
assert_eq!(locals_addr, self.frame().locals_addr());
667667
let base = self.local_to_op(local, None)?;
668668
Ok(match offset {
669669
Some(offset) => base.offset(offset, place.layout, self)?,

compiler/rustc_const_eval/src/interpret/place.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ where
623623
// just fall back to the indirect path.
624624
dest.force_mplace(self)?
625625
} else {
626-
debug_assert_eq!(locals_addr, self.frame().locals_addr());
626+
assert_eq!(locals_addr, self.frame().locals_addr());
627627
match self.frame_mut().locals[local].access_mut()? {
628628
Operand::Immediate(local_val) => {
629629
// Local can be updated in-place.
@@ -738,7 +738,7 @@ where
738738
// FIXME: share the logic with `write_immediate_no_validate`.
739739
dest.force_mplace(self)?
740740
} else {
741-
debug_assert_eq!(locals_addr, self.frame().locals_addr());
741+
assert_eq!(locals_addr, self.frame().locals_addr());
742742
match self.frame_mut().locals[local].access_mut()? {
743743
Operand::Immediate(local) => {
744744
*local = Immediate::Uninit;
@@ -918,7 +918,7 @@ where
918918
) -> InterpResult<'tcx, MPlaceTy<'tcx, M::Provenance>> {
919919
let mplace = match place.place {
920920
Place::Local { local, offset, locals_addr } => {
921-
debug_assert_eq!(locals_addr, self.frame().locals_addr());
921+
assert_eq!(locals_addr, self.frame().locals_addr());
922922
let whole_local = match self.frame_mut().locals[local].access_mut()? {
923923
&mut Operand::Immediate(local_val) => {
924924
// We need to make an allocation.

0 commit comments

Comments
 (0)