Skip to content

Commit b5636b8

Browse files
Rename TimeLimitReached -> StepLimitReached
1 parent 044dc6e commit b5636b8

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

src/librustc/mir/interpret/error.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ pub enum ResourceExhaustionInfo {
568568
/// The program ran for too long.
569569
///
570570
/// The exact limit is set by the `const_eval_limit` attribute.
571-
TimeLimitReached,
571+
StepLimitReached,
572572
}
573573

574574
impl fmt::Debug for ResourceExhaustionInfo {
@@ -578,7 +578,9 @@ impl fmt::Debug for ResourceExhaustionInfo {
578578
StackFrameLimitReached => {
579579
write!(f, "reached the configured maximum number of stack frames")
580580
}
581-
TimeLimitReached => write!(f, "exceeded interpreter time limit"),
581+
StepLimitReached => {
582+
write!(f, "exceeded interpreter step limit (see `#[const_eval_limit]`)")
583+
}
582584
}
583585
}
584586
}

src/librustc_mir/const_eval/machine.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ impl<'mir, 'tcx> interpret::Machine<'mir, 'tcx> for CompileTimeInterpreter {
335335

336336
ecx.machine.steps_remaining -= 1;
337337
if ecx.machine.steps_remaining == 0 {
338-
throw_exhaust!(TimeLimitReached)
338+
throw_exhaust!(StepLimitReached)
339339
}
340340

341341
Ok(())

src/test/ui/consts/const-eval/infinite_loop.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ error[E0080]: evaluation of constant value failed
2626
--> $DIR/infinite_loop.rs:8:20
2727
|
2828
LL | n = if n % 2 == 0 { n/2 } else { 3*n + 1 };
29-
| ^^^^^^^^^^ exceeded interpreter time limit
29+
| ^^^^^^^^^^ exceeded interpreter step limit (see `#[const_eval_limit]`)
3030

3131
error: aborting due to 3 previous errors
3232

src/test/ui/consts/const-eval/issue-52475.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ error[E0080]: evaluation of constant value failed
1616
--> $DIR/issue-52475.rs:7:17
1717
|
1818
LL | n = (n + 1) % 5;
19-
| ^^^^^^^^^^^ exceeded interpreter time limit
19+
| ^^^^^^^^^^^ exceeded interpreter step limit (see `#[const_eval_limit]`)
2020

2121
error: aborting due to 2 previous errors
2222

src/test/ui/consts/const_limit/const_eval_limit_reached.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error: any use of this value will cause an error
44
LL | / const X: usize = {
55
LL | | let mut x = 0;
66
LL | | while x != 1000 {
7-
| | ^^^^^^^^^ exceeded interpreter time limit
7+
| | ^^^^^^^^^ exceeded interpreter step limit (see `#[const_eval_limit]`)
88
LL | |
99
... |
1010
LL | | x

0 commit comments

Comments
 (0)