https://gcc.gnu.org/g:bd9c7cadbe55c29b3f2bf1c9f0b7eea71f13217f

commit bd9c7cadbe55c29b3f2bf1c9f0b7eea71f13217f
Author: Michael Meissner <[email protected]>
Date:   Fri Sep 26 00:29:59 2025 -0400

    Fix typo in _Float16 conversion.
    
    2025-09-25  Michael Meissner  <[email protected]>
    
    gcc/
    
            * config/rs6000/rs6000.md (trunc<mode>hf2): Use %x1 instead of %1.

Diff:
---
 gcc/config/rs6000/rs6000.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md
index 5e5bb46b78d8..1f5d659b8bca 100644
--- a/gcc/config/rs6000/rs6000.md
+++ b/gcc/config/rs6000/rs6000.md
@@ -5875,7 +5875,7 @@
        (float_truncate:HF
         (match_operand:SFDF 1 "vsx_register_operand" "wa")))]
   "TARGET_IEEE16"
-  "xscvdphp %x0,%1"
+  "xscvdphp %x0,%x1"
   [(set_attr "type" "fpsimple")])
 
 ;; Convert BFmode to SFmode/DFmode.

Reply via email to