diff options
| author | Markus Reiter <me@reitermark.us> | 2025-03-05 15:47:14 +0100 |
|---|---|---|
| committer | Markus Reiter <me@reitermark.us> | 2025-03-06 21:38:39 +0100 |
| commit | 3e374043f3ec5d4146fcd350a3e027f359e8ef1c (patch) | |
| tree | 5ae70c66e3fc91eb11f6925d36307568cd2b6005 | |
| parent | 222adac953d1e745763850f75f4afac69b1d4321 (diff) | |
| download | rust-3e374043f3ec5d4146fcd350a3e027f359e8ef1c.tar.gz rust-3e374043f3ec5d4146fcd350a3e027f359e8ef1c.zip | |
Add test for `escape_debug` without bounds check.
| -rw-r--r-- | tests/codegen/char-escape-debug-no-bounds-check.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/codegen/char-escape-debug-no-bounds-check.rs b/tests/codegen/char-escape-debug-no-bounds-check.rs new file mode 100644 index 00000000000..cfde46045e5 --- /dev/null +++ b/tests/codegen/char-escape-debug-no-bounds-check.rs @@ -0,0 +1,14 @@ +//@ compile-flags: -Copt-level=3 +#![crate_type = "lib"] + +use std::char::EscapeDebug; + +// Make sure no bounds checks are emitted when escaping a character. + +// CHECK-LABEL: @char_escape_debug_no_bounds_check +#[no_mangle] +pub fn char_escape_debug_no_bounds_check(c: char) -> EscapeDebug { + // CHECK-NOT: panic + // CHECK-NOT: panic_bounds_check + c.escape_debug() +} |
