diff options
author | Matthias Klose <doko@gcc.gnu.org> | 2012-10-07 11:46:06 +0000 |
---|---|---|
committer | Matthias Klose <doko@gcc.gnu.org> | 2012-10-07 11:46:06 +0000 |
commit | 7c9bc8758e499a50cc323f88a062367d769251ef (patch) | |
tree | 48e927d29168dfe56a6dde4e7bcc532067f0b61a /libgcc | |
parent | acb72498a7c78dfc6b14fe979863294f4e19061e (diff) | |
download | gcc-7c9bc8758e499a50cc323f88a062367d769251ef.tar.gz |
Fix typo in previous commit:
2012-10-07 Matthias Klose <doko@ubuntu.com>
* config/arm/unwind-arm.h (__gnu_unwind_24bit): Mark parameters
as unused.
(_Unwind_decode_typeinfo_ptr): Mark base as unused.
From-SVN: r192182
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/config/arm/unwind-arm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgcc/config/arm/unwind-arm.h b/libgcc/config/arm/unwind-arm.h index 0ccdb3d4c91..74f72b0fdde 100644 --- a/libgcc/config/arm/unwind-arm.h +++ b/libgcc/config/arm/unwind-arm.h @@ -67,7 +67,7 @@ extern "C" { static inline _Unwind_Reason_Code __gnu_unwind_24bit (_Unwind_Context * context __attribute__ ((unused)), - _Unwind_Context *_uw data __attribute__ ((unused)), + _uw data __attribute__ ((unused)), int compact __attribute__ ((unused))) { return _URC_FAILURE; |