* unwind-libunwind.c (_Unwind_FindEnclosingFunction): New.
authorDavid Mosberger <davidm@hpl.hp.com>
Thu, 8 May 2003 01:15:40 +0000 (01:15 +0000)
committerRichard Henderson <rth@gcc.gnu.org>
Thu, 8 May 2003 01:15:40 +0000 (18:15 -0700)
From-SVN: r66590

gcc/ChangeLog
gcc/unwind-libunwind.c

index ba540d456e8fe634daa587c1444768cf9bd1275e..fc627a150c9c18cefc4f1b2144448968677871ce 100644 (file)
@@ -1,3 +1,7 @@
+2003-05-07  David Mosberger <davidm@hpl.hp.com>
+
+        * unwind-libunwind.c (_Unwind_FindEnclosingFunction): New.
+
 2003-05-07  Richard Henderson  <rth@redhat.com>
 
        * config/i386/i386.c (ix86_split_long_move): Fix base register
index bbbbd3882b1432b8be3c64d21280d00fdae162ed..2e53a59eac7b83aada09abef4cd27252113aeff3 100644 (file)
@@ -1,5 +1,5 @@
 /* Subroutines needed for unwinding stack frames via the libunwind API.
-   Copyright (C) 2002
+   Copyright (C) 2002, 2003
    Free Software Foundation, Inc.
    Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
 
@@ -161,6 +161,12 @@ _Unwind_GetRegionStart (struct _Unwind_Context *context)
   return (_Unwind_Ptr) pi.start_ip;
 }
 
+void *
+_Unwind_FindEnclosingFunction (void *pc)
+{
+  return NULL;
+}
+
 #include "unwind.inc"
 
 #endif /* !__USING_SJLJ_EXCEPTIONS__ */