This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from bb57c12e55 Automatic date update in version.in new 62a02d25b6 Add .nop assembler directive
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gas/ChangeLog | 43 ++++++ gas/NEWS | 3 + gas/as.h | 10 ++ gas/config/tc-i386.c | 272 +++++++++++++++++++++------------- gas/config/tc-i386.h | 5 + gas/doc/as.texinfo | 18 +++ gas/read.c | 53 +++++++ gas/read.h | 1 + gas/testsuite/gas/i386/i386.exp | 13 ++ gas/testsuite/gas/i386/nop-1.d | 31 ++++ gas/testsuite/gas/i386/nop-1.s | 21 +++ gas/testsuite/gas/i386/nop-2.d | 40 +++++ gas/testsuite/gas/i386/nop-2.s | 22 +++ gas/testsuite/gas/i386/nop-3.d | 20 +++ gas/testsuite/gas/i386/nop-3.s | 15 ++ gas/testsuite/gas/i386/nop-4.d | 23 +++ gas/testsuite/gas/i386/nop-4.s | 18 +++ gas/testsuite/gas/i386/nop-5.d | 25 ++++ gas/testsuite/gas/i386/nop-5.s | 19 +++ gas/testsuite/gas/i386/nop-6.d | 17 +++ gas/testsuite/gas/i386/nop-6.s | 25 ++++ gas/testsuite/gas/i386/nop-bad-1.l | 4 + gas/testsuite/gas/i386/nop-bad-1.s | 4 + gas/testsuite/gas/i386/x86-64-nop-1.d | 32 ++++ gas/testsuite/gas/i386/x86-64-nop-2.d | 41 +++++ gas/testsuite/gas/i386/x86-64-nop-3.d | 21 +++ gas/testsuite/gas/i386/x86-64-nop-4.d | 24 +++ gas/testsuite/gas/i386/x86-64-nop-5.d | 26 ++++ gas/testsuite/gas/i386/x86-64-nop-6.d | 18 +++ gas/write.c | 59 +++++++- 30 files changed, 812 insertions(+), 111 deletions(-) create mode 100644 gas/testsuite/gas/i386/nop-1.d create mode 100644 gas/testsuite/gas/i386/nop-1.s create mode 100644 gas/testsuite/gas/i386/nop-2.d create mode 100644 gas/testsuite/gas/i386/nop-2.s create mode 100644 gas/testsuite/gas/i386/nop-3.d create mode 100644 gas/testsuite/gas/i386/nop-3.s create mode 100644 gas/testsuite/gas/i386/nop-4.d create mode 100644 gas/testsuite/gas/i386/nop-4.s create mode 100644 gas/testsuite/gas/i386/nop-5.d create mode 100644 gas/testsuite/gas/i386/nop-5.s create mode 100644 gas/testsuite/gas/i386/nop-6.d create mode 100644 gas/testsuite/gas/i386/nop-6.s create mode 100644 gas/testsuite/gas/i386/nop-bad-1.l create mode 100644 gas/testsuite/gas/i386/nop-bad-1.s create mode 100644 gas/testsuite/gas/i386/x86-64-nop-1.d create mode 100644 gas/testsuite/gas/i386/x86-64-nop-2.d create mode 100644 gas/testsuite/gas/i386/x86-64-nop-3.d create mode 100644 gas/testsuite/gas/i386/x86-64-nop-4.d create mode 100644 gas/testsuite/gas/i386/x86-64-nop-5.d create mode 100644 gas/testsuite/gas/i386/x86-64-nop-6.d