This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 3af33bc Introduce -fprofile-update=prefer-atomic
new b1f04d3 2016-11-14 Prasad Ghangal <prasad.ghangal(a)gmail.com> Richa [...]
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/ChangeLog | 36 +++++++
gcc/c-family/ChangeLog | 7 ++
gcc/c-family/c-common.c | 2 +
gcc/c-family/c-common.h | 6 ++
gcc/c-family/c.opt | 4 +
gcc/c/ChangeLog | 39 ++++++++
gcc/c/Make-lang.in | 3 +-
gcc/c/c-parser.c | 235 ++++++++++++++++------------------------------
gcc/c/c-tree.h | 5 +
gcc/c/config-lang.in | 2 +-
gcc/doc/invoke.texi | 9 +-
gcc/dumpfile.c | 4 +-
gcc/dumpfile.h | 7 +-
gcc/function.h | 3 +
gcc/gimple-pretty-print.c | 106 +++++++++++++++------
gcc/internal-fn.c | 6 ++
gcc/internal-fn.def | 1 +
gcc/internal-fn.h | 1 +
gcc/objc/ChangeLog | 5 +
gcc/objc/config-lang.in | 2 +-
gcc/passes.c | 33 ++++++-
gcc/testsuite/ChangeLog | 22 +++++
gcc/tree-cfg.c | 61 +++++++++++-
gcc/tree-into-ssa.c | 12 ++-
gcc/tree-pretty-print.c | 22 ++++-
gcc/tree-ssanames.c | 19 +++-
gcc/tree-ssanames.h | 3 +-
27 files changed, 447 insertions(+), 208 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 libcxx.
from 70e4c50 Protect nested-exceptions tests under no-exceptions
new 897956e Protect std::ios tests under libcpp-no-exceptions
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:
.../iostreams.base/ios/basic.ios.members/copyfmt.pass.cpp | 7 ++++++-
.../iostreams.base/ios/basic.ios.members/set_rdbuf.pass.cpp | 8 +++++++-
.../input.output/iostreams.base/ios/iostate.flags/clear.pass.cpp | 6 +++++-
.../iostreams.base/ios/iostate.flags/exceptions_iostate.pass.cpp | 5 ++++-
.../iostreams.base/ios/iostate.flags/setstate.pass.cpp | 6 +++++-
5 files changed, 27 insertions(+), 5 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.
Ryan Arnold pushed a change to branch master
in repository toolchain/tcwg-release-tools.
from 0a7e801 proj.py: add existing_proj to create a Proj in an existing di [...]
new 37fb851 rn.py VerifyGCCSourceAction should 'raise IOError' when sourc [...]
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:
rn.py | 7 +------
1 file changed, 1 insertion(+), 6 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.
Ryan Arnold pushed a change to branch master
in repository toolchain/tcwg-release-tools.
from 7552cee Runs tracking rc/rel tags need to checkout release branch
adds d3848d1 Generate release notes with python scripting.
adds 622da8d Re-organize python code to use a directory module layout
adds 1dc9a5a Replace hardcoded GCC '5' with a variable for determining GCC [...]
adds 4ae6f70 Remove non-conformant comments and add docstrings to proj.py.
adds 9f955d2 Remove non-conformant comments and add docstrings to series.py.
adds 0efe81a Remove class PV and make Vendor and Package baseclasses.
adds 9dac4d4 Add --nopersist to rn.py.
adds 737c797 Add support for generating 'release' release notes using tags.
adds 897b858 Correct test expectations and remove spurious print statements.
adds a52c1b3 Replaced Series __format__ with a cleaner implementation and [...]
adds 2e634bb Move 'cd' context out of linaropy/git/gitrepo.py into linaropy/cd.py
adds 86dce83 linaropy/series.py: Validate that 'rcN' is an integer when cr [...]
adds 0c5d8bc rn.py: Fix rn_template.log() invocation.
adds fefa752 rn.py: If jinja can't generate output, print exception and le [...]
adds a4102e7 Move prompt for csv file out or rngen.py into rn.py.
adds 3cde4a2 Reorder code so user is only asked once each iteration if the [...]
adds c9d2c8e Merge branch 'master' of ssh://git.linaro.org/toolchain/tcwg- [...]
adds c77e848 Set ${basis} based on original TAG or BRANCH, not resolved BRANCH.
adds 26ba46c Run autopep8 with default settings
adds 2218b1f Run autopep8 on the first level of --aggressive
adds 3273532 Run autopep8 with level 2 of --aggressive
adds 3e1cc00 Fix testrn.py
adds 90277b8 Attempt to fix copy-pasted code
adds 503ec19 Rename GitRepo::log's parameter to numcommits
new 0a7e801 proj.py: add existing_proj to create a Proj in an existing di [...]
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:
.gitignore | 5 +
linaropy/__init__.py | 1 +
linaropy/cd.py | 24 +
linaropy/git/__init__.py | 0
linaropy/git/clone.py | 348 +++++++++++
linaropy/git/gitrepo.py | 257 +++++++++
linaropy/git/workdir.py | 263 +++++++++
linaropy/handle_exit.py | 157 +++++
linaropy/proj.py | 196 +++++++
linaropy/rn/__init__.py | 0
linaropy/rn/custom_wordwrap.py | 33 ++
linaropy/rn/gccclone.py | 32 ++
linaropy/rn/linaroseries.py | 565 ++++++++++++++++++
linaropy/rn/rngen.py | 312 ++++++++++
linaropy/rn/rnseries.py | 210 +++++++
linaropy/rn/template.py | 118 ++++
linaropy/rninput.py | 40 ++
linaropy/series.py | 1246 ++++++++++++++++++++++++++++++++++++++++
linaropy/vers.py | 641 +++++++++++++++++++++
rn.py | 213 +++++++
tcwg-release.sh | 41 +-
testrn.py | 27 +
22 files changed, 4717 insertions(+), 12 deletions(-)
create mode 100644 .gitignore
create mode 100644 linaropy/__init__.py
create mode 100644 linaropy/cd.py
create mode 100644 linaropy/git/__init__.py
create mode 100644 linaropy/git/clone.py
create mode 100644 linaropy/git/gitrepo.py
create mode 100644 linaropy/git/workdir.py
create mode 100644 linaropy/handle_exit.py
create mode 100644 linaropy/proj.py
create mode 100644 linaropy/rn/__init__.py
create mode 100644 linaropy/rn/custom_wordwrap.py
create mode 100644 linaropy/rn/gccclone.py
create mode 100644 linaropy/rn/linaroseries.py
create mode 100644 linaropy/rn/rngen.py
create mode 100644 linaropy/rn/rnseries.py
create mode 100644 linaropy/rn/template.py
create mode 100644 linaropy/rninput.py
create mode 100644 linaropy/series.py
create mode 100644 linaropy/vers.py
create mode 100644 rn.py
create mode 100644 testrn.py
--
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 bdeedc7 Revert "llvm-strings: support printing the filename"
new 91298c7 Reverting r285406, which was a temporary workaround to get on [...]
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:
cmake/modules/CheckCompilerVersion.cmake | 8 +++-----
1 file changed, 3 insertions(+), 5 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 glibc.
from 14f95a4 Add script to build many glibc configurations.
new 809b72d [BZ #19239] Issue deprecation warnings on macro expansion.
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:
ChangeLog | 11 +++++++++++
misc/sys/cdefs.h | 7 +++++--
misc/sys/sysmacros.h | 56 +++++++++++++++++++++-------------------------------
3 files changed, 39 insertions(+), 35 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 clang.
from 15fbdae [OpenCL] always use SPIR address spaces for kernel_arg_addr_space MD
new 42f6941 Fix r286819 (accidentally patched multiple times.
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:
test/CodeGenOpenCL/kernel-arg-info-single-as.cl | 18 ------------------
1 file changed, 18 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 llvm.
from 7ff5cb1 Remove redundant condition (PR28352) NFCI.
new bdeedc7 Revert "llvm-strings: support printing the filename"
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:
test/tools/llvm-strings/archive-filename.test | 10 ----------
test/tools/llvm-strings/file-filename.test | 4 ----
test/tools/llvm-strings/nested-archives.test | 4 ++--
test/tools/llvm-strings/stdin-filename.test | 3 ---
tools/llvm-strings/llvm-strings.cpp | 21 ++++-----------------
5 files changed, 6 insertions(+), 36 deletions(-)
delete mode 100644 test/tools/llvm-strings/archive-filename.test
delete mode 100644 test/tools/llvm-strings/file-filename.test
delete mode 100644 test/tools/llvm-strings/stdin-filename.test
--
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 5720c2a Revert "Improve handling of floating point literals in OpenCL [...]
new 15fbdae [OpenCL] always use SPIR address spaces for kernel_arg_addr_space MD
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/CodeGen/CodeGenFunction.cpp | 22 +++++++++++++++++---
test/CodeGenOpenCL/kernel-arg-info-single-as.cl | 27 +++++++++++++++++++++++++
2 files changed, 46 insertions(+), 3 deletions(-)
create mode 100644 test/CodeGenOpenCL/kernel-arg-info-single-as.cl
--
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 e5fa196 Improve handling of floating point literals in OpenCL to only [...]
new 5720c2a Revert "Improve handling of floating point literals in OpenCL [...]
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/Sema/SemaExpr.cpp | 29 +++++++----------------------
lib/Sema/SemaType.cpp | 3 ++-
test/CodeGenOpenCL/fpmath.cl | 13 -------------
test/SemaOpenCL/extensions.cl | 12 ++----------
4 files changed, 11 insertions(+), 46 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.