[gcc r11-11121] libiberty, Darwin: Fix a build warning.

François-Xavier Coudert fxcoudert@gcc.gnu.org
Sat Dec 2 09:20:55 GMT 2023


https://gcc.gnu.org/g:02cd761eb1198df50453b2e39653f48053609ffc

commit r11-11121-g02cd761eb1198df50453b2e39653f48053609ffc
Author: Iain Sandoe <iain@sandoe.co.uk>
Date:   Mon Aug 23 17:34:43 2021 +0100

    libiberty, Darwin: Fix a build warning.
    
    r12-3005-g220c410162ebece4f missed a cast for the set_32 call.
    Fixed thus.
    
    Signed-off-by: Iain Sandoe <iain@sandoe.co.uk>
    
    libiberty/ChangeLog:
    
            * simple-object-mach-o.c (simple_object_mach_o_write_segment):
            Cast the first argument to set_32 as needed.
    
    (cherry picked from commit 38757aa88735ab2e511bc428e2407a5a5e9fa0be)

Diff:
---
 libiberty/simple-object-mach-o.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libiberty/simple-object-mach-o.c b/libiberty/simple-object-mach-o.c
index 72b69d19c21..a8869e7c639 100644
--- a/libiberty/simple-object-mach-o.c
+++ b/libiberty/simple-object-mach-o.c
@@ -1228,7 +1228,7 @@ simple_object_mach_o_write_segment (simple_object_write *sobj, int descriptor,
       /* Swap the indices, if required.  */
 
       for (i = 0; i < (nsects_in * 4); ++i)
-	set_32 (&index[i], index[i]);
+	set_32 ((unsigned char *) &index[i], index[i]);
 
       sechdr_offset += sechdrsize;


More information about the Gcc-cvs mailing list