This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 8ac17fcd7b4 [NDS32] Change return type of predicator to bool.
new cae57acaa7d 2018-08-12 Paul Thomas <pault(a)gcc.gnu.org>
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/fortran/ChangeLog | 8 +++++++
gcc/fortran/trans-intrinsic.c | 33 +++++++++++++++++++++-----
gcc/testsuite/ChangeLog | 5 ++++
gcc/testsuite/gfortran.dg/transfer_class_3.f90 | 18 ++++++++++++++
4 files changed, 58 insertions(+), 6 deletions(-)
create mode 100644 gcc/testsuite/gfortran.dg/transfer_class_3.f90
--
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 09ceeb3f508 [InstCombine] move/add tests for fadd/fsub factorization; NFC
new fa0e915a8e4 [InstCombine] fix/enhance fadd/fsub factorization (X * Z) [...]
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/Transforms/InstCombine/InstCombineAddSub.cpp | 132 ++++++++---------------
test/Transforms/InstCombine/fadd-fsub-factor.ll | 130 +++++++++-------------
2 files changed, 98 insertions(+), 164 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 gcc-8-branch
in repository gcc.
from 05d5c2c9d3c Daily bump.
new 634abe27838 2018-08-12 Paul Thomas <pault(a)gcc.gnu.org>
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/fortran/ChangeLog | 8 ++++++++
gcc/fortran/resolve.c | 1 +
gcc/testsuite/ChangeLog | 6 ++++++
gcc/testsuite/gfortran.dg/use_rename_9.f90 | 19 +++++++++++++++++++
4 files changed, 34 insertions(+)
create mode 100644 gcc/testsuite/gfortran.dg/use_rename_9.f90
--
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 3be0e4e1987 [NDS32] Add new option: -msched-prolog-epilog
new 8ac17fcd7b4 [NDS32] Change return type of predicator to bool.
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 | 13 +++++++++++++
gcc/config/nds32/nds32-predicates.c | 16 ++++++++--------
gcc/config/nds32/nds32-protos.h | 8 ++++----
3 files changed, 25 insertions(+), 12 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 ac6c5d8a364 [InstSimplify] Guard against large shift amounts.
new 09ceeb3f508 [InstCombine] move/add tests for fadd/fsub factorization; NFC
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/Transforms/InstCombine/fadd-fsub-factor.ll | 497 ++++++++++++++++++++++++
test/Transforms/InstCombine/fast-math.ll | 373 ------------------
2 files changed, 497 insertions(+), 373 deletions(-)
create mode 100644 test/Transforms/InstCombine/fadd-fsub-factor.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-tools-extra.
from dd74695a Add a new check to the readability module that flags uses of [...]
new 7e714d5a Adding the readability module to the list of dependencies for [...]
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:
clang-tidy/cppcoreguidelines/CMakeLists.txt | 1 +
1 file changed, 1 insertion(+)
--
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-tools-extra.
from c86f5b0c [clangd] Avoid duplicates in findDefinitions response
new dd74695a Add a new check to the readability module that flags uses of [...]
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:
.../CppCoreGuidelinesTidyModule.cpp | 3 +
clang-tidy/readability/CMakeLists.txt | 1 +
clang-tidy/readability/MagicNumbersCheck.cpp | 171 ++++++++++++++++++
clang-tidy/readability/MagicNumbersCheck.h | 97 ++++++++++
clang-tidy/readability/ReadabilityTidyModule.cpp | 3 +
docs/ReleaseNotes.rst | 6 +
.../cppcoreguidelines-avoid-magic-numbers.rst | 10 ++
docs/clang-tidy/checks/list.rst | 2 +
.../checks/readability-magic-numbers.rst | 113 ++++++++++++
test/clang-tidy/readability-magic-numbers.cpp | 199 +++++++++++++++++++++
10 files changed, 605 insertions(+)
create mode 100644 clang-tidy/readability/MagicNumbersCheck.cpp
create mode 100644 clang-tidy/readability/MagicNumbersCheck.h
create mode 100644 docs/clang-tidy/checks/cppcoreguidelines-avoid-magic-numbers.rst
create mode 100644 docs/clang-tidy/checks/readability-magic-numbers.rst
create mode 100644 test/clang-tidy/readability-magic-numbers.cpp
--
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 ae13a696f98 [NDS32] Enable -malways-align by default at -O1 and above.
new 3be0e4e1987 [NDS32] Add new option: -msched-prolog-epilog
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 | 6 ++++++
gcc/config/nds32/nds32.c | 16 ++++++++++------
gcc/config/nds32/nds32.opt | 4 ++++
3 files changed, 20 insertions(+), 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.
unknown user pushed a change to branch master
in repository gcc.
from 78f09145f1c 2018-08-12 Paul Thomas <pault(a)gcc.gnu.org>
new ae13a696f98 [NDS32] Enable -malways-align by default at -O1 and above.
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 | 5 +++++
gcc/common/config/nds32/nds32-common.c | 2 ++
2 files changed, 7 insertions(+)
--
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_31-branch
in repository binutils-gdb.
from 252bc4d0f7 Automatic date update in version.in
new 28a27bdbb9 x86: Properly add X86_ISA_1_NEEDED property
new a69de9c7cf ld-x86-64/pr23486b.d: Swap pr23486a.s and pr23486a.s
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:
bfd/ChangeLog | 7 +++++++
bfd/elfxx-x86.c | 28 ++++++++++++++++++++++------
ld/ChangeLog | 11 +++++++++++
ld/testsuite/{ld-elfcomm => ld-elf}/dummy.s | 0
ld/testsuite/ld-elf/linux-x86.S | 28 ++++++++++++++++++++++++++++
ld/testsuite/ld-elf/linux-x86.exp | 2 +-
ld/testsuite/ld-x86-64/pr23486b.d | 2 +-
7 files changed, 70 insertions(+), 8 deletions(-)
copy ld/testsuite/{ld-elfcomm => ld-elf}/dummy.s (100%)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.