diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2025-08-26 17:18:15 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2025-08-26 17:18:15 +0200 |
| commit | 17137135aeb281e3abf2c41740633aa3c4042e17 (patch) | |
| tree | c71062c080809718894fca972ccd84c64abfe2e5 /compiler/rustc_codegen_gcc/tests/run/int_overflow.rs | |
| parent | 4356e83c77cb28113411fb8e2219127f708095b5 (diff) | |
| parent | feb42827f11a7ae241ceecc81e9ae556fb6ba214 (diff) | |
| download | rust-17137135aeb281e3abf2c41740633aa3c4042e17.tar.gz rust-17137135aeb281e3abf2c41740633aa3c4042e17.zip | |
Merge commit 'feb42827f11a7ae241ceecc81e9ae556fb6ba214' into subtree-update_cg_gcc_2025-08-26
Diffstat (limited to 'compiler/rustc_codegen_gcc/tests/run/int_overflow.rs')
| -rw-r--r-- | compiler/rustc_codegen_gcc/tests/run/int_overflow.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_gcc/tests/run/int_overflow.rs b/compiler/rustc_codegen_gcc/tests/run/int_overflow.rs index 78872159f62..78e1cac57e0 100644 --- a/compiler/rustc_codegen_gcc/tests/run/int_overflow.rs +++ b/compiler/rustc_codegen_gcc/tests/run/int_overflow.rs @@ -12,7 +12,7 @@ fn main() { let arg_count = std::env::args().count(); let int = isize::MAX; - let _int = int + arg_count as isize; // overflow + let _int = int + arg_count as isize; // overflow // If overflow checking is disabled, we should reach here. #[cfg(not(debug_assertions))] |
