diff options
author | Kai Tietz <kai.tietz@onevision.com> | 2010-07-15 07:58:47 +0000 |
---|---|---|
committer | Kai Tietz <kai.tietz@onevision.com> | 2010-07-15 07:58:47 +0000 |
commit | f14ead0d1546cd5083e35b13d06d9c477ff82492 (patch) | |
tree | 93cc22e256fbc88ba606bf1cc6e47ac5ef75cd2a /binutils | |
parent | 25d17eb4ccec7e63aa8d5fbe03202df8c82e1619 (diff) | |
download | gdb-f14ead0d1546cd5083e35b13d06d9c477ff82492.zip gdb-f14ead0d1546cd5083e35b13d06d9c477ff82492.tar.gz gdb-f14ead0d1546cd5083e35b13d06d9c477ff82492.tar.bz2 |
2010-07-15 Kai Tietz <kai.tietz@onevision.com>
* dllwrap.c (main): Make sure is_leading_underscore
gets initialized with correct default.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/dllwrap.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index ab10e48..873d9c9 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -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. diff --git a/binutils/dllwrap.c b/binutils/dllwrap.c index c807f49..4e48f3e 100644 --- a/binutils/dllwrap.c +++ b/binutils/dllwrap.c @@ -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) |