This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch users/hjl/gpoff/master
in repository binutils-gdb.
discards b376a372a6 Add R_X86_64_GPOFF
discards 1b65f7d772 x86: Lookup __tls_get_addr or ___tls_get_addr once
adds 55ef6584ca Don't fail in elf32_hppa_set_gp
adds 3232fabd2d Remove cleanups from Rust parser
adds fdffd6f411 Fix Rust test suite for 1.20 beta
adds ee0c32930c Use gdb::unique_xmalloc_ptr when calling tilde_expand
new e2a084f2c1 Automatic date update in version.in
new 7a65b5f5ef x86: Lookup __tls_get_addr or ___tls_get_addr once
new 484295db27 Add R_X86_64_GPOFF
new 4d2b345dd0 Add R_386_GPOFF
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (b376a372a6)
\
N -- N -- N refs/heads/users/hjl/gpoff/master (4d2b345dd0)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omits" are not gone; other references still
refer to them. Any revisions marked "discards" are gone forever.
The 4 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:
bfd/ChangeLog | 5 +
bfd/elf32-hppa.c | 16 +-
bfd/elf32-i386.c | 198 ++++++++++++++-
bfd/version.h | 2 +-
gas/config/tc-i386.c | 2 +-
gas/testsuite/gas/i386/gpoff.d | 10 +
gas/testsuite/gas/i386/gpoff.s | 3 +
gas/testsuite/gas/i386/i386.exp | 3 +
gas/testsuite/gas/i386/inval-gpoff.l | 22 ++
gas/testsuite/gas/i386/inval-gpoff.s | 6 +
gdb/ChangeLog | 44 ++++
gdb/breakpoint.c | 11 +-
gdb/cli/cli-cmds.c | 16 +-
gdb/cli/cli-dump.c | 79 ++----
gdb/compile/compile-object-load.c | 25 +-
gdb/corelow.c | 26 +-
gdb/psymtab.c | 14 +-
gdb/rust-exp.y | 346 ++++++++++++++------------
gdb/solib.c | 24 +-
gdb/source.c | 8 +-
gdb/symfile.c | 53 ++--
gdb/symmisc.c | 28 +--
gdb/testsuite/ChangeLog | 5 +
gdb/testsuite/gdb.rust/simple.exp | 6 +-
gdb/tracefile-tfile.c | 22 +-
include/elf/i386.h | 1 +
ld/ChangeLog | 4 +
ld/testsuite/ld-i386/gpoff-1a.S | 15 ++
ld/testsuite/ld-i386/gpoff-1b.c | 77 ++++++
ld/testsuite/ld-i386/gpoff-2a.S | 14 ++
ld/testsuite/ld-i386/gpoff-2b.c | 76 ++++++
ld/testsuite/ld-i386/gpoff-3.d | 3 +
ld/testsuite/ld-i386/gpoff-3.s | 4 +
ld/testsuite/ld-i386/gpoff-4.d | 3 +
ld/testsuite/ld-i386/gpoff-4.s | 17 ++
ld/testsuite/ld-i386/gpoff-5.d | 3 +
ld/testsuite/ld-i386/gpoff-5.s | 19 ++
ld/testsuite/ld-i386/gpoff-6.d | 12 +
ld/testsuite/ld-i386/gpoff-6.s | 9 +
ld/testsuite/ld-i386/gpoff-7.d | 16 ++
ld/testsuite/ld-i386/gpoff-7.s | 9 +
ld/testsuite/ld-i386/gpoff-8.s | 10 +
ld/testsuite/{ld-x86-64 => ld-i386}/gpoff-8.t | 0
ld/testsuite/ld-i386/gpoff-8a.d | 18 ++
ld/testsuite/ld-i386/gpoff-8b.d | 18 ++
ld/testsuite/ld-i386/gpoff-8c.d | 18 ++
ld/testsuite/ld-i386/gpoff-8d.d | 18 ++
ld/testsuite/ld-i386/gpoff-8e.d | 18 ++
ld/testsuite/ld-i386/gpoff-8f.d | 18 ++
ld/testsuite/ld-i386/i386.exp | 72 ++++++
ld/testsuite/ld-unique/pr21529.d | 2 +-
ld/testsuite/ld-x86-64/gpoff-1b.c | 15 +-
ld/testsuite/ld-x86-64/gpoff-2b.c | 15 +-
ld/testsuite/ld-x86-64/x86-64.exp | 120 ++++-----
54 files changed, 1132 insertions(+), 466 deletions(-)
create mode 100644 gas/testsuite/gas/i386/gpoff.d
create mode 100644 gas/testsuite/gas/i386/gpoff.s
create mode 100644 gas/testsuite/gas/i386/inval-gpoff.l
create mode 100644 gas/testsuite/gas/i386/inval-gpoff.s
create mode 100644 ld/testsuite/ld-i386/gpoff-1a.S
create mode 100644 ld/testsuite/ld-i386/gpoff-1b.c
create mode 100644 ld/testsuite/ld-i386/gpoff-2a.S
create mode 100644 ld/testsuite/ld-i386/gpoff-2b.c
create mode 100644 ld/testsuite/ld-i386/gpoff-3.d
create mode 100644 ld/testsuite/ld-i386/gpoff-3.s
create mode 100644 ld/testsuite/ld-i386/gpoff-4.d
create mode 100644 ld/testsuite/ld-i386/gpoff-4.s
create mode 100644 ld/testsuite/ld-i386/gpoff-5.d
create mode 100644 ld/testsuite/ld-i386/gpoff-5.s
create mode 100644 ld/testsuite/ld-i386/gpoff-6.d
create mode 100644 ld/testsuite/ld-i386/gpoff-6.s
create mode 100644 ld/testsuite/ld-i386/gpoff-7.d
create mode 100644 ld/testsuite/ld-i386/gpoff-7.s
create mode 100644 ld/testsuite/ld-i386/gpoff-8.s
copy ld/testsuite/{ld-x86-64 => ld-i386}/gpoff-8.t (100%)
create mode 100644 ld/testsuite/ld-i386/gpoff-8a.d
create mode 100644 ld/testsuite/ld-i386/gpoff-8b.d
create mode 100644 ld/testsuite/ld-i386/gpoff-8c.d
create mode 100644 ld/testsuite/ld-i386/gpoff-8d.d
create mode 100644 ld/testsuite/ld-i386/gpoff-8e.d
create mode 100644 ld/testsuite/ld-i386/gpoff-8f.d
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
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 ee0c32930c Use gdb::unique_xmalloc_ptr when calling tilde_expand
new e2a084f2c1 Automatic date update in version.in
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:
bfd/version.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch gdb-8.0-branch
in repository binutils-gdb.
from 54258ac616 Automatic date update in version.in
new 2b06c11ba0 Automatic date update in version.in
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:
bfd/version.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch binutils-2_29-branch
in repository binutils-gdb.
from 60bf3b780c Automatic date update in version.in
new 4f17d3b435 Automatic date update in version.in
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:
bfd/version.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 549896a7368 [ADT] Add a much simpler loop to DenseMap::clear when the t [...]
new a8f11c10872 [X86] Enable isel to use the PAUSE instruction even when SS [...]
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:
lib/Target/X86/X86InstrSSE.td | 3 +--
test/CodeGen/X86/pause.ll | 15 +++++++++++++++
2 files changed, 16 insertions(+), 2 deletions(-)
create mode 100644 test/CodeGen/X86/pause.ll
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository clang.
from b9952538c1 [OpenCL] Remove extra select functions from opencl-c.h
new c5d8b4291b [X86] Enable isel to use the PAUSE instruction even when SSE [...]
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:
include/clang/Basic/BuiltinsX86.def | 4 ++--
test/CodeGen/pause.c | 11 +++++++++++
2 files changed, 13 insertions(+), 2 deletions(-)
create mode 100644 test/CodeGen/pause.c
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from e9e9a558ffc [InstCombine] Fold (C - X) ^ signmask -> (C + signmask - X).
new 96fa22223c5 [InstCombine] Regenerate test28_sub test case in xor.ll tha [...]
new 549896a7368 [ADT] Add a much simpler loop to DenseMap::clear when the t [...]
The 2 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:
include/llvm/ADT/DenseMap.h | 22 ++++++++++++++--------
test/Transforms/InstCombine/xor.ll | 3 ++-
2 files changed, 16 insertions(+), 9 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
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 fdffd6f411 Fix Rust test suite for 1.20 beta
new ee0c32930c Use gdb::unique_xmalloc_ptr when calling tilde_expand
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:
gdb/ChangeLog | 26 +++++++++++++
gdb/breakpoint.c | 11 ++----
gdb/cli/cli-cmds.c | 16 ++------
gdb/cli/cli-dump.c | 79 +++++++++++++--------------------------
gdb/compile/compile-object-load.c | 25 +++++++------
gdb/corelow.c | 26 +++++--------
gdb/psymtab.c | 14 ++-----
gdb/solib.c | 24 ++++--------
gdb/source.c | 8 ++--
gdb/symfile.c | 53 ++++++++++----------------
gdb/symmisc.c | 28 ++++----------
gdb/tracefile-tfile.c | 22 ++++-------
12 files changed, 129 insertions(+), 203 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 16316b617b3 Daily bump.
new 5ddd2306d85 * c-ada-spec.c (has_static_fields): Look only into variabl [...]
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:
gcc/c-family/ChangeLog | 10 ++++++++++
gcc/c-family/c-ada-spec.c | 29 ++++++++++++++---------------
2 files changed, 24 insertions(+), 15 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
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 3232fabd2d Remove cleanups from Rust parser
new fdffd6f411 Fix Rust test suite for 1.20 beta
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:
gdb/testsuite/ChangeLog | 5 +++++
gdb/testsuite/gdb.rust/simple.exp | 6 +++---
2 files changed, 8 insertions(+), 3 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.