This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Binutils fails to build with -O0


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=6f4c0a426c653867c40936a9b8f503628adbd64b

commit 6f4c0a426c653867c40936a9b8f503628adbd64b
Author: Alan Modra <amodra@gmail.com>
Date:   Tue Mar 22 14:20:18 2016 +1030

    Binutils fails to build with -O0
    
    	PR 19851
    	* plugin.c (try_load_plugin): Avoid -Wstack-usage warning.

Diff:
---
 bfd/ChangeLog | 5 +++++
 bfd/plugin.c  | 3 +--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 43c9c28..ffafbf6 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2016-03-22  Alan Modra  <amodra@gmail.com>
+
+	PR 19851
+	* plugin.c (try_load_plugin): Avoid -Wstack-usage warning.
+
 2016-03-21  Andrew Burgess  <andrew.burgess@embecosm.com>
 
 	* archures.c (bfd_mach_arc_nps400): Define.
diff --git a/bfd/plugin.c b/bfd/plugin.c
index 82a87d6..f57833c 100644
--- a/bfd/plugin.c
+++ b/bfd/plugin.c
@@ -206,8 +206,7 @@ static int
 try_load_plugin (const char *pname, bfd *abfd, int *has_plugin_p)
 {
   void *plugin_handle;
-  int tv_size = 4;
-  struct ld_plugin_tv tv[tv_size];
+  struct ld_plugin_tv tv[4];
   int i;
   ld_plugin_onload onload;
   enum ld_plugin_status status;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]