aboutsummaryrefslogtreecommitdiff
path: root/libgcc/config/ia64
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@codesourcery.com>2012-04-20 09:44:50 +0200
committerThomas Schwinge <tschwinge@gcc.gnu.org>2012-04-20 09:44:50 +0200
commit1bde7dabc9b3c63fd69c6436fe35a2a409c31d52 (patch)
treee8f1712ea0ae177845322cbae1373ba828408d42 /libgcc/config/ia64
parentfe0bd630ffa798fa569201dd2ac8278770689b91 (diff)
downloadgcc-1bde7dabc9b3c63fd69c6436fe35a2a409c31d52.zip
gcc-1bde7dabc9b3c63fd69c6436fe35a2a409c31d52.tar.gz
gcc-1bde7dabc9b3c63fd69c6436fe35a2a409c31d52.tar.bz2
struct siginfo vs. siginfo_t
libgcc/ * config/alpha/linux-unwind.h (alpha_fallback_frame_state): Use siginfo_t instead of struct siginfo. * config/bfin/linux-unwind.h (bfin_fallback_frame_state): Likewise. * config/i386/linux-unwind.h (x86_fallback_frame_state): Likewise. * config/ia64/linux-unwind.h (ia64_fallback_frame_state) (ia64_handle_unwabi): Likewise. * config/mips/linux-unwind.h (mips_fallback_frame_state): Likewise. * config/pa/linux-unwind.h (pa32_fallback_frame_state): Likewise. * config/sh/linux-unwind.h (shmedia_fallback_frame_state) (sh_fallback_frame_state): Likewise. * config/tilepro/linux-unwind.h (tile_fallback_frame_state): Likewise. * config/xtensa/linux-unwind.h (xtensa_fallback_frame_state): Likewise. From-SVN: r186610
Diffstat (limited to 'libgcc/config/ia64')
-rw-r--r--libgcc/config/ia64/linux-unwind.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libgcc/config/ia64/linux-unwind.h b/libgcc/config/ia64/linux-unwind.h
index 93f762d..da31259 100644
--- a/libgcc/config/ia64/linux-unwind.h
+++ b/libgcc/config/ia64/linux-unwind.h
@@ -1,5 +1,5 @@
/* DWARF2 EH unwinding support for IA64 Linux.
- Copyright (C) 2004, 2005, 2009 Free Software Foundation, Inc.
+ Copyright (C) 2004, 2005, 2009, 2012 Free Software Foundation, Inc.
This file is part of GCC.
@@ -47,7 +47,7 @@ ia64_fallback_frame_state (struct _Unwind_Context *context,
struct sigframe {
char scratch[16];
unsigned long sig_number;
- struct siginfo *info;
+ siginfo_t *info;
struct sigcontext *sc;
} *frame_ = (struct sigframe *)context->psp;
struct sigcontext *sc = frame_->sc;
@@ -137,7 +137,7 @@ ia64_handle_unwabi (struct _Unwind_Context *context, _Unwind_FrameState *fs)
struct sigframe {
char scratch[16];
unsigned long sig_number;
- struct siginfo *info;
+ siginfo_t *info;
struct sigcontext *sc;
} *frame = (struct sigframe *)context->psp;
struct sigcontext *sc = frame->sc;