diff options
author | Andreas Schwab <schwab@suse.de> | 2003-01-23 17:22:53 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@gcc.gnu.org> | 2003-01-23 17:22:53 +0000 |
commit | 9a600d0c7f8c12236fd1e7fd060c0586c6211d9f (patch) | |
tree | 06fd699815582f2f6d1ec9545b1672cd0d4611b6 | |
parent | 8099b2aee82ea0bf7ef49f38f179fa6e7e27e970 (diff) | |
download | gcc-9a600d0c7f8c12236fd1e7fd060c0586c6211d9f.zip gcc-9a600d0c7f8c12236fd1e7fd060c0586c6211d9f.tar.gz gcc-9a600d0c7f8c12236fd1e7fd060c0586c6211d9f.tar.bz2 |
* unwind.h (_Unwind_GetTextRelBase): Mark parameter as unused.
From-SVN: r61659
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/unwind.h | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ad581ec..abec0a1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +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> * fixinc/Makefile.in (FL_LIST): Revert last change. diff --git a/gcc/unwind.h b/gcc/unwind.h index 218181c..e4b1e10 100644 --- a/gcc/unwind.h +++ b/gcc/unwind.h @@ -1,5 +1,5 @@ /* 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. @@ -182,7 +182,7 @@ _Unwind_GetDataRelBase (struct _Unwind_Context *_C) } static inline _Unwind_Ptr -_Unwind_GetTextRelBase (struct _Unwind_Context *_C) +_Unwind_GetTextRelBase (struct _Unwind_Context *_C __attribute__ ((__unused__))) { abort (); return 0; |