2010-07-15 Kai Tietz <kai.tietz@onevision.com>
authorKai Tietz <kai.tietz@onevision.com>
Thu, 15 Jul 2010 07:58:47 +0000 (07:58 +0000)
committerKai Tietz <kai.tietz@onevision.com>
Thu, 15 Jul 2010 07:58:47 +0000 (07:58 +0000)
        * dllwrap.c (main): Make sure is_leading_underscore
        gets initialized with correct default.

binutils/ChangeLog
binutils/dllwrap.c

index ab10e48..873d9c9 100644 (file)
@@ -1,3 +1,8 @@
+2010-07-15  Kai Tietz <kai.tietz@onevision.com>
+
+       * dllwrap.c (main): Make sure is_leading_underscore
+       gets initialized with correct default.
+
 2010-07-05  Alan Modra  <amodra@gmail.com>
 
        * readelf.c (uncompress_section_contents): Avoid gcc-4.6 warning.
index c807f49..4e48f3e 100644 (file)
@@ -855,6 +855,9 @@ Creating one, but that may not be what you want"));
   else
     which_cpu = UNKNOWN_CPU;
 
+  if (is_leading_underscore == -1)
+    is_leading_underscore = (which_cpu != X64_CPU && which_cpu != ARM_CPU);
+
   /* Re-create the command lines as a string, taking care to quote stuff.  */
   dlltool_cmdline = dyn_string_new (cmdline_len);
   if (verbose)