unwind-hpux.c: New file.
authorSteve Ellcey <sje@cup.hp.com>
Tue, 21 Mar 2006 21:19:10 +0000 (21:19 +0000)
committerSteve Ellcey <sje@gcc.gnu.org>
Tue, 21 Mar 2006 21:19:10 +0000 (21:19 +0000)
* config/ia64/unwind-hpux.c: New file.
* config/ia64/t-hpux: Add unwind-hpux.c to libgcc.

From-SVN: r112259

gcc/ChangeLog
gcc/config/ia64/t-hpux
gcc/config/ia64/unwind-hpux.c [new file with mode: 0644]

index fb5f2377c2fa68c8bee1d3d253796885c7acf626..de9d0844275e15794fd764fb41e69b3ca80d6d6e 100644 (file)
@@ -1,3 +1,8 @@
+2006-03-21  Steve Ellcey  <sje@cup.hp.com>
+
+       * config/ia64/unwind-hpux.c: New file.
+       * config/ia64/t-hpux: Add unwind-hpux.c to libgcc.
+
 2006-03-21  Steve Ellcey  <sje@cup.hp.com>
 
        PR libgomp/26384
index 7d294d17457c6f4ca7adfee2e5af0b1a07265b3d..e7af793ceb81c69c9711c13de8fe215ec3bd7ec7 100644 (file)
@@ -9,11 +9,14 @@ MULTILIB_MATCHES =
 
 # Support routines for HP-UX 128 bit floats.
 
-LIB2FUNCS_EXTRA=quadlib.c $(srcdir)/config/floatunsitf.c
+LIB2FUNCS_EXTRA=quadlib.c $(srcdir)/config/floatunsitf.c unwind-hpux.c
 
 quadlib.c: $(srcdir)/config/ia64/quadlib.c
        cat $(srcdir)/config/ia64/quadlib.c > quadlib.c
 
+unwind-hpux.c: $(srcdir)/config/ia64/unwind-hpux.c
+       cat $(srcdir)/config/ia64/unwind-hpux.c > unwind-hpux.c
+
 # We get an undefined main when building a cross compiler because our
 # linkspec has "-u main" and we want that for linking but it makes
 # LIBGCC1_TEST fail because it uses -nostdlib -nostartup.
diff --git a/gcc/config/ia64/unwind-hpux.c b/gcc/config/ia64/unwind-hpux.c
new file mode 100644 (file)
index 0000000..cfe341e
--- /dev/null
@@ -0,0 +1,39 @@
+/* Subroutine for _Unwind_* routines not provided by the standard
+   HP-UX unwind library.
+
+   Copyright (C) 2006 Free Software Foundation, Inc.
+
+This file is part of GCC.
+
+GCC is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+In addition to the permissions in the GNU General Public License, the
+Free Software Foundation gives you unlimited permission to link the
+compiled version of this file into combinations with other programs,
+and to distribute those combinations without any restriction coming
+from the use of this file.  (The General Public License restrictions
+do apply in other respects; for example, they cover modification of
+the file, and distribution when not linked into a combine
+executable.)
+
+GCC is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with GCC; see the file COPYING.  If not, write to
+the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+Boston, MA 02110-1301, USA.  */
+
+#include <unwind.h>
+
+uint64_t
+_Unwind_GetIPInfo (struct _Unwind_Context *context, int *ip_before_insn)
+{
+  *ip_before_insn = 0;
+  return _Unwind_GetIP (context);
+}