Skip to content

Commit 9f4c0b7

Browse files
committed
Auto merge of #142839 - oli-obk:denullarification, r=RalfJung,celinval
Stop backends from needing to support nullary intrinsics And then remove our infrastructure special casing them. Further improvements can now be done to them by avoiding the intermediate ConstValue step, but let's leave that to follow up work r? `@RalfJung`
2 parents 9ba3956 + 32c1dc6 commit 9f4c0b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/pass/float.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1358,7 +1358,7 @@ fn test_min_max_nondet() {
13581358
/// Ensure that if we call the closure often enough, we see both `true` and `false.`
13591359
#[track_caller]
13601360
fn ensure_both(f: impl Fn() -> bool) {
1361-
let rounds = 16;
1361+
let rounds = 32;
13621362
let first = f();
13631363
for _ in 1..rounds {
13641364
if f() != first {

0 commit comments

Comments
 (0)