about summary refs log tree commit diff
path: root/compiler/rustc_codegen_gcc/src
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/src
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/src')
-rw-r--r--compiler/rustc_codegen_gcc/src/intrinsic/simd.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_gcc/src/intrinsic/simd.rs b/compiler/rustc_codegen_gcc/src/intrinsic/simd.rs
index fdc15d580ef..41363d6313d 100644
--- a/compiler/rustc_codegen_gcc/src/intrinsic/simd.rs
+++ b/compiler/rustc_codegen_gcc/src/intrinsic/simd.rs
@@ -1497,7 +1497,6 @@ fn simd_funnel_shift<'a, 'gcc, 'tcx>(
         let index = bx.context.new_rvalue_from_int(bx.int_type, i as i32);
         let a_val = bx.context.new_vector_access(None, a, index).to_rvalue();
         let a_val = bx.context.new_bitcast(None, a_val, unsigned_type);
-        // TODO: we probably need to use gcc_int_cast instead.
         let a_val = bx.gcc_int_cast(a_val, new_int_type);
         let b_val = bx.context.new_vector_access(None, b, index).to_rvalue();
         let b_val = bx.context.new_bitcast(None, b_val, unsigned_type);