From a27f3e3fd1e4d16160f8885b6b06665b5319f56c Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Mon, 21 Jul 2025 14:34:12 +0200 Subject: Rename `tests/codegen` into `tests/codegen-llvm` --- tests/codegen/step_by-overflow-checks.rs | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 tests/codegen/step_by-overflow-checks.rs (limited to 'tests/codegen/step_by-overflow-checks.rs') diff --git a/tests/codegen/step_by-overflow-checks.rs b/tests/codegen/step_by-overflow-checks.rs deleted file mode 100644 index 53800e9f879..00000000000 --- a/tests/codegen/step_by-overflow-checks.rs +++ /dev/null @@ -1,26 +0,0 @@ -//@ compile-flags: -Copt-level=3 - -#![crate_type = "lib"] - -use std::iter::StepBy; -use std::slice::Iter; - -// The constructor for `StepBy` ensures we can never end up needing to do zero -// checks on denominators, so check that the code isn't emitting panic paths. - -// CHECK-LABEL: @step_by_len_std -#[no_mangle] -pub fn step_by_len_std(x: &StepBy>) -> usize { - // CHECK-NOT: div_by_zero - // CHECK: udiv - // CHECK-NOT: div_by_zero - x.len() -} - -// CHECK-LABEL: @step_by_len_naive -#[no_mangle] -pub fn step_by_len_naive(x: Iter, step_minus_one: usize) -> usize { - // CHECK: udiv - // CHECK: call{{.+}}div_by_zero - x.len() / (step_minus_one + 1) -} -- cgit 1.4.1-3-g733a5