Commit 9a600d0c by Andreas Schwab Committed by Andreas Schwab

* unwind.h (_Unwind_GetTextRelBase): Mark parameter as unused.

From-SVN: r61659
parent 8099b2ae
2003-01-23 Andreas Schwab <schwab@suse.de>
* unwind.h (_Unwind_GetTextRelBase): Mark parameter as unused.
2003-01-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 2003-01-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* fixinc/Makefile.in (FL_LIST): Revert last change. * fixinc/Makefile.in (FL_LIST): Revert last change.
......
/* Exception handling and frame unwind runtime interface routines. /* Exception handling and frame unwind runtime interface routines.
Copyright (C) 2001 Free Software Foundation, Inc. Copyright (C) 2001, 2003 Free Software Foundation, Inc.
This file is part of GCC. This file is part of GCC.
...@@ -182,7 +182,7 @@ _Unwind_GetDataRelBase (struct _Unwind_Context *_C) ...@@ -182,7 +182,7 @@ _Unwind_GetDataRelBase (struct _Unwind_Context *_C)
} }
static inline _Unwind_Ptr static inline _Unwind_Ptr
_Unwind_GetTextRelBase (struct _Unwind_Context *_C) _Unwind_GetTextRelBase (struct _Unwind_Context *_C __attribute__ ((__unused__)))
{ {
abort (); abort ();
return 0; return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment