about summary refs log tree commit diff
path: root/compiler/rustc_codegen_gcc/tests/run/int_overflow.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2025-08-26 18:54:46 +0000
committerbors <bors@rust-lang.org>2025-08-26 18:54:46 +0000
commit160e7623e8cbbf1feab2b6e2a24733a98c7bde9c (patch)
tree6ad3484bf11a232512ca51c3a7e2c854926f3cfc /compiler/rustc_codegen_gcc/tests/run/int_overflow.rs
parent91ee6a4057ce4bf1ab6d2f932cae497488d67c81 (diff)
parent92104a6af500e33b289c2c4783563672a0182ad0 (diff)
downloadrust-160e7623e8cbbf1feab2b6e2a24733a98c7bde9c.tar.gz
rust-160e7623e8cbbf1feab2b6e2a24733a98c7bde9c.zip
Auto merge of #145890 - GuillaumeGomez:subtree-update_cg_gcc_2025-08-26, r=GuillaumeGomez
GCC backend subtree update

cc `@antoyo`

r? ghost
Diffstat (limited to 'compiler/rustc_codegen_gcc/tests/run/int_overflow.rs')
-rw-r--r--compiler/rustc_codegen_gcc/tests/run/int_overflow.rs2
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))]