diff mbox

libgcc unwind-arm.h: mark arguments as unused

Message ID 50C58B7F.3090905@ubuntu.com
State New
Headers show

Commit Message

Matthias Klose Dec. 10, 2012, 7:13 a.m. UTC
This was seen and fixed on trunk building libbacktrace on arm:
http://gcc.gnu.org/ml/gcc-patches/2012-10/msg00628.html

I see this now cross building libgo targeting arm on the 4.7 branch. Ok to
backport to the 4.7 branch?

  Matthias

Comments

Ian Lance Taylor Dec. 10, 2012, 7:13 p.m. UTC | #1
On Sun, Dec 9, 2012 at 11:13 PM, Matthias Klose <doko@ubuntu.com> wrote:
> This was seen and fixed on trunk building libbacktrace on arm:
> http://gcc.gnu.org/ml/gcc-patches/2012-10/msg00628.html
>
> I see this now cross building libgo targeting arm on the 4.7 branch. Ok to
> backport to the 4.7 branch?

It's fine with me.  You should technically get RM permission although
this seems safe enough.

Ian
Richard Earnshaw Dec. 17, 2012, 2:44 p.m. UTC | #2
On 10/12/12 07:13, Matthias Klose wrote:
> This was seen and fixed on trunk building libbacktrace on arm:
> http://gcc.gnu.org/ml/gcc-patches/2012-10/msg00628.html
>
> I see this now cross building libgo targeting arm on the 4.7 branch. Ok to
> backport to the 4.7 branch?
>
>    Matthias
>
>
> unwind-arm.diff
>
>
> 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.
>

OK.

R.
diff mbox

Patch

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.

--- libgcc/config/arm/unwind-arm.h~
+++ libgcc/config/arm/unwind-arm.h
@@ -39,7 +39,8 @@ 
 #endif
   /* Decode an R_ARM_TARGET2 relocation.  */
   static inline _Unwind_Word
-  _Unwind_decode_typeinfo_ptr (_Unwind_Word base, _Unwind_Word ptr)
+  _Unwind_decode_typeinfo_ptr (_Unwind_Word base __attribute__ ((unused)),
+                               _Unwind_Word ptr)
     {
       _Unwind_Word tmp;
 
@@ -65,7 +66,9 @@ 
     }
 
   static inline _Unwind_Reason_Code
-  __gnu_unwind_24bit (_Unwind_Context * context, _uw data, int compact)
+  __gnu_unwind_24bit (_Unwind_Context * context __attribute__ ((unused)),
+                      _uw data __attribute__ ((unused)),
+                      int compact __attribute__ ((unused)))
     {
       return _URC_FAILURE;
     }