diff options
author | cvs2svn <> | 2012-07-26 14:05:38 +0000 |
---|---|---|
committer | cvs2svn <> | 2012-07-26 14:05:38 +0000 |
commit | 9e8fdd506723cbfb67c5dd23b4d2df2edf302acc (patch) | |
tree | 74470da1988588ea86f0e670b7d17ed0a89ea385 | |
parent | 843068a7cb1fea88027fa81e1dc12d5a99339bb2 (diff) | |
download | newlib-9e8fdd506723cbfb67c5dd23b4d2df2edf302acc.zip newlib-9e8fdd506723cbfb67c5dd23b4d2df2edf302acc.tar.gz newlib-9e8fdd506723cbfb67c5dd23b4d2df2edf302acc.tar.bz2 |
This commit was manufactured by cvs2svn to create branch 'binutils-binutils-2_23-branchpoint
2_23-branch'.
Sprout from gdb_7_5-branch 2012-07-13 23:39:47 UTC cvs2svn 'This commit was manufactured by cvs2svn to create branch 'gdb_7_5-branch'.'
Cherrypick from master 2012-07-26 14:05:37 UTC Nick Clifton <nickc@redhat.com> 'Fix attributation of PR 13135 patch.':
include/ChangeLog
include/dis-asm.h
Delete:
djunpack.bat
-rwxr-xr-x | djunpack.bat | 52 | ||||
-rw-r--r-- | include/ChangeLog | 6 | ||||
-rw-r--r-- | include/dis-asm.h | 2 |
3 files changed, 7 insertions, 53 deletions
diff --git a/djunpack.bat b/djunpack.bat deleted file mode 100755 index 5c6e9b2..0000000 --- a/djunpack.bat +++ /dev/null @@ -1,52 +0,0 @@ -@echo off
-Rem
-Rem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line
-Rem format, or else stock DOS/Windows shells will refuse to run it.
-Rem
-Rem This batch file unpacks the GDB distribution while simultaneously
-Rem renaming some of the files whose names are invalid on DOS or conflict
-Rem with other file names after truncation to DOS 8+3 namespace.
-Rem
-Rem Invoke like this:
-Rem
-Rem djunpack gdb-XYZ.tar
-Rem
-Rem where XYZ is the version number. If the argument includes leading
-Rem directories, it MUST use backslashes, not forward slashes.
-Rem
-Rem The following 2 lines need to be changed with each new GDB release, to
-Rem be identical to the name of the top-level directory where the GDB
-Rem distribution unpacks itself.
-set GDBVER=gdb-5.0
-if "%GDBVER%"=="gdb-5.0" GoTo EnvOk
-Rem If their environment space is too small, re-exec with a larger one
-command.com /e:4096 /c %0 %1
-GoTo End
-:EnvOk
-if not exist %1 GoTo NoArchive
-djtar -x -p -o %GDBVER%/gdb/config/djgpp/fnchange.lst %1 > fnchange.tmp
-Rem The following uses a feature of COPY whereby it does not copy
-Rem empty files. We need that because the previous line will create
-Rem an empty fnchange.tmp even if the command failed for some reason.
-copy fnchange.tmp junk.tmp > nul
-if not exist junk.tmp GoTo NoDjTar
-del junk.tmp
-sed -e "s,@V@,%GDBVER%,g" < fnchange.tmp > fnchange.lst
-Rem See the comment above about the reason for using COPY.
-copy fnchange.lst junk.tmp > nul
-if not exist junk.tmp GoTo NoSed
-del junk.tmp
-djtar -x -n fnchange.lst %1
-GoTo End
-:NoSed
-echo FAIL: Sed is not available.
-GoTo End
-:NoDjTar
-echo FAIL: DJTAR is not available or no fnchange.lst file in %1.
-GoTo End
-:NoArchive
-echo FAIL: the file %1 does not seem to exist.
-echo Remember that %1 cannot use forward slashes, only backslashes.
-GoTo End
-:End
-set GDBVER=
diff --git a/include/ChangeLog b/include/ChangeLog index 38e30cf..3f16e04 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,9 @@ +2012-07-24 Stephan McCamant <smcc@cs.berkeley.edu> + Dr David Alan Gilbert <dave@treblig.org> + + PR binutils/13135 + * dis-asm.h (fprintf_ftype): Add ATTRIBUTE_FPTR_PRINTF_2. + 2012-07-13 Doug Evans <dje@google.com> * filenames.h: #include "hashtab.h". diff --git a/include/dis-asm.h b/include/dis-asm.h index f9c8ae9..661e7cf 100644 --- a/include/dis-asm.h +++ b/include/dis-asm.h @@ -35,7 +35,7 @@ extern "C" { #include <stdio.h> #include "bfd.h" - typedef int (*fprintf_ftype) (void *, const char*, ...) /*ATTRIBUTE_FPTR_PRINTF_2*/; + typedef int (*fprintf_ftype) (void *, const char*, ...) ATTRIBUTE_FPTR_PRINTF_2; enum dis_insn_type { |