public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r14-4615] csky: Fix -Wincompatible-pointer-types warning during libgcc build
@ 2023-10-13  7:37 Florian Weimer
  0 siblings, 0 replies; only message in thread
From: Florian Weimer @ 2023-10-13  7:37 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:6e5216ec17164b480c780877b47a0df79be3ef61

commit r14-4615-g6e5216ec17164b480c780877b47a0df79be3ef61
Author: Florian Weimer <fweimer@redhat.com>
Date:   Fri Oct 13 09:34:36 2023 +0200

    csky: Fix -Wincompatible-pointer-types warning during libgcc build
    
    libgcc/
    
            * config/csky/linux-unwind.h (csky_fallback_frame_state): Add
            missing cast.

Diff:
---
 libgcc/config/csky/linux-unwind.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libgcc/config/csky/linux-unwind.h b/libgcc/config/csky/linux-unwind.h
index 66b2a44e047..1acef215974 100644
--- a/libgcc/config/csky/linux-unwind.h
+++ b/libgcc/config/csky/linux-unwind.h
@@ -75,7 +75,7 @@ csky_fallback_frame_state (struct _Unwind_Context *context,
 	siginfo_t info;
 	ucontext_t uc;
       } *_rt = context->cfa;
-      sc = &(_rt->uc.uc_mcontext);
+      sc = (struct sigcontext *) &(_rt->uc.uc_mcontext);
     }
   else
     return _URC_END_OF_STACK;

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-10-13  7:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-13  7:37 [gcc r14-4615] csky: Fix -Wincompatible-pointer-types warning during libgcc build Florian Weimer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).