This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository clang.
from 0d63878a31 Update ifunc attribute support documentation
new bdf4477271 Fix linkage error on ProgramPoint's dump method.
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/Analysis/ProgramPoint.h | 4 +---
lib/Analysis/ProgramPoint.cpp | 4 ++++
2 files changed, 5 insertions(+), 3 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 cce9df65256 [PHIElimination] Lower a PHI node with only undef uses as I [...]
new c4936565e39 [X86] Copy memrefs when folding a load for division instruc [...]
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/X86ISelDAGToDAG.cpp | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 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-tools-extra.
from 1f9ec52e Allow clang-tidy to be built without a dependency on the clan [...]
new a8a63d51 Reverting r343415 as it breaks at least one of the bots.
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:
CMakeLists.txt | 2 ++
clang-tidy/CMakeLists.txt | 13 +++---------
clang-tidy/ClangTidy.cpp | 10 ---------
clang-tidy/plugin/CMakeLists.txt | 7 +-----
clang-tidy/plugin/ClangTidyPlugin.cpp | 2 --
clang-tidy/tool/CMakeLists.txt | 7 +-----
clang-tidy/tool/ClangTidyMain.cpp | 2 --
docs/clang-tidy/index.rst | 4 ----
test/CMakeLists.txt | 16 ++++++++------
test/clang-tidy/enable-alpha-checks.cpp | 2 --
test/clang-tidy/mpi-buffer-deref.cpp | 1 -
test/clang-tidy/mpi-type-mismatch.cpp | 1 -
test/clang-tidy/nolint.cpp | 1 -
test/clang-tidy/read_file_config.cpp | 1 -
test/clang-tidy/static-analyzer-config.cpp | 1 -
test/clang-tidy/static-analyzer.cpp | 1 -
test/clang-tidy/temporaries.cpp | 1 -
test/lit.cfg | 34 ++++++++++++++++--------------
unittests/CMakeLists.txt | 4 +++-
19 files changed, 38 insertions(+), 72 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 40eee5d07bd [LLVM-MCA][X86] Add some AVX512 tests
new e299be6492d [PHIElimination] Update the regression test for PR16508
new cce9df65256 [PHIElimination] Lower a PHI node with only undef uses as I [...]
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:
lib/CodeGen/PHIElimination.cpp | 31 ++++----
test/CodeGen/AMDGPU/phi-elimination-assertion.mir | 69 +++++++++++++++++
test/CodeGen/PowerPC/2013-07-01-PHIElimBug.ll | 28 -------
test/CodeGen/PowerPC/2013-07-01-PHIElimBug.mir | 92 +++++++++++++++++++++++
4 files changed, 176 insertions(+), 44 deletions(-)
create mode 100644 test/CodeGen/AMDGPU/phi-elimination-assertion.mir
delete mode 100644 test/CodeGen/PowerPC/2013-07-01-PHIElimBug.ll
create mode 100644 test/CodeGen/PowerPC/2013-07-01-PHIElimBug.mir
--
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 3e4193d6 [cxx2a] Fix warning triggered by r343285
new 1f9ec52e Allow clang-tidy to be built without a dependency on the clan [...]
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:
CMakeLists.txt | 2 --
clang-tidy/CMakeLists.txt | 13 +++++++++---
clang-tidy/ClangTidy.cpp | 10 +++++++++
clang-tidy/plugin/CMakeLists.txt | 7 +++++-
clang-tidy/plugin/ClangTidyPlugin.cpp | 2 ++
clang-tidy/tool/CMakeLists.txt | 7 +++++-
clang-tidy/tool/ClangTidyMain.cpp | 2 ++
docs/clang-tidy/index.rst | 4 ++++
test/CMakeLists.txt | 16 ++++++--------
test/clang-tidy/enable-alpha-checks.cpp | 2 ++
test/clang-tidy/mpi-buffer-deref.cpp | 1 +
test/clang-tidy/mpi-type-mismatch.cpp | 1 +
test/clang-tidy/nolint.cpp | 1 +
test/clang-tidy/read_file_config.cpp | 1 +
test/clang-tidy/static-analyzer-config.cpp | 1 +
test/clang-tidy/static-analyzer.cpp | 1 +
test/clang-tidy/temporaries.cpp | 1 +
test/lit.cfg | 34 ++++++++++++++----------------
unittests/CMakeLists.txt | 4 +---
19 files changed, 72 insertions(+), 38 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 7eb858a56a2 [X86][Btver2] Fix PCmpIStrI/PCmpIStrM schedules
new 40eee5d07bd [LLVM-MCA][X86] Add some AVX512 tests
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-mca/X86/Generic/resources-avx512.s | 192 ++++++++++-
.../llvm-mca/X86/SkylakeServer/resources-avx512.s | 373 +++++++++++++++++++++
.../X86/SkylakeServer/resources-avx512vl.s | 335 ++++++++++++++++++
3 files changed, 899 insertions(+), 1 deletion(-)
create mode 100644 test/tools/llvm-mca/X86/SkylakeServer/resources-avx512.s
create mode 100644 test/tools/llvm-mca/X86/SkylakeServer/resources-avx512vl.s
--
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 e1b020acef2 [PDB] Add native support for dumping array types.
new 7eb858a56a2 [X86][Btver2] Fix PCmpIStrI/PCmpIStrM schedules
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/X86ScheduleBtVer2.td | 4 ++--
test/tools/llvm-mca/X86/BtVer2/resources-sse42.s | 10 +++++-----
2 files changed, 7 insertions(+), 7 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 105cd1d7a6 Automatic date update in version.in
new dd20378271 Darwin: Remove unused variables [-Werror=unused-variable]
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 | 14 ++++++++++++++
gdb/darwin-nat-info.c | 4 ----
gdb/darwin-nat.c | 32 --------------------------------
gdb/i386-darwin-nat.c | 1 -
4 files changed, 14 insertions(+), 37 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 0de6a84fee3 [X86][BtVer2] Add the ability to add additional uops for fo [...]
new e1b020acef2 [PDB] Add native support for dumping array types.
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:
.../{NativeTypeBuiltin.h => NativeTypeArray.h} | 30 ++++-----
lib/DebugInfo/PDB/CMakeLists.txt | 1 +
lib/DebugInfo/PDB/Native/NativeExeSymbol.cpp | 2 +
lib/DebugInfo/PDB/Native/NativeTypeArray.cpp | 67 +++++++++++++++++++++
lib/DebugInfo/PDB/Native/SymbolCache.cpp | 5 ++
test/DebugInfo/PDB/Inputs/every-array.cpp | 37 ++++++++++++
.../PDB/Inputs/every-array.pdb} | Bin 69520 -> 73728 bytes
tools/llvm-pdbutil/PrettyTypeDumper.cpp | 13 ++++
tools/llvm-pdbutil/PrettyTypeDumper.h | 1 +
tools/llvm-pdbutil/llvm-pdbutil.cpp | 11 +++-
tools/llvm-pdbutil/llvm-pdbutil.h | 1 +
11 files changed, 151 insertions(+), 17 deletions(-)
copy include/llvm/DebugInfo/PDB/Native/{NativeTypeBuiltin.h => NativeTypeArray.h} (56%)
create mode 100644 lib/DebugInfo/PDB/Native/NativeTypeArray.cpp
create mode 100644 test/DebugInfo/PDB/Inputs/every-array.cpp
copy test/{tools/llvm-readobj/Inputs/ppc64.exe => DebugInfo/PDB/Inputs/every-array [...]
mode change 100755 => 100644
--
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 lldb.
from 6b8d4731c Pull GetSoftwareBreakpointPCOffset into base class
new 35b89933f Fix NetBSD build for r343409
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:
source/Plugins/Process/NetBSD/NativeProcessNetBSD.h | 1 -
1 file changed, 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.