This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from c3eeba0 AMDGPU: Cleanup vector insert/extract tests
new 669fa32 [docs] Be a bit more precise.
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:
docs/CommandGuide/llvm-profdata.rst | 9 +++++----
1 file changed, 5 insertions(+), 4 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 14cb586 AMDGPU: Add fract intrinsic
new 0c56b68 AMDGPU: Fix trailing whitespace
new c3eeba0 AMDGPU: Cleanup vector insert/extract tests
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/Target/AMDGPU/SIInstrInfo.td | 10 +-
test/CodeGen/AMDGPU/extract_vector_elt-f64.ll | 29 ++
test/CodeGen/AMDGPU/extract_vector_elt-i16.ll | 86 +++++
...vector-elt-i64.ll => extract_vector_elt-i64.ll} | 29 +-
...t-vector-elt-i8.ll => extract_vector_elt-i8.ll} | 104 ++++--
test/CodeGen/AMDGPU/extract_vector_elt_i16.ll | 30 --
test/CodeGen/AMDGPU/insert_vector_elt.ll | 354 ++++++++++++++-------
7 files changed, 460 insertions(+), 182 deletions(-)
create mode 100644 test/CodeGen/AMDGPU/extract_vector_elt-f64.ll
create mode 100644 test/CodeGen/AMDGPU/extract_vector_elt-i16.ll
rename test/CodeGen/AMDGPU/{extract-vector-elt-i64.ll => extract_vector_elt-i64.ll} (61%)
rename test/CodeGen/AMDGPU/{extract-vector-elt-i8.ll => extract_vector_elt-i8.ll} (57%)
delete mode 100644 test/CodeGen/AMDGPU/extract_vector_elt_i16.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 5684fe5 Clean up: remove trailing spaces in x86 intrinsic headers.
new ddf13e2 AMDGPU: Add fract builtin
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/BuiltinsAMDGPU.def | 2 ++
lib/CodeGen/CGBuiltin.cpp | 3 +++
test/CodeGenOpenCL/builtins-amdgcn.cl | 14 ++++++++++++++
3 files changed, 19 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 master
in repository compiler-rt.
from eaa4331 [sanitizer] Move termination functions in their own file
new 929d23e [esan] Add handling of large stack size rlimits
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/esan/CMakeLists.txt | 1 +
lib/esan/esan.cpp | 2 +
lib/esan/esan.h | 6 ++
lib/esan/esan_interceptors.cpp | 43 ++-----------
lib/esan/esan_linux.cpp | 83 +++++++++++++++++++++++++
lib/esan/esan_shadow.h | 8 +++
lib/sanitizer_common/sanitizer_common.h | 1 +
lib/sanitizer_common/sanitizer_posix_libcdep.cc | 4 ++
test/esan/TestCases/large-stack-linux.c | 74 ++++++++++++++++++++++
test/esan/TestCases/mmap-shadow-conflict.c | 3 +-
test/esan/TestCases/verbose-simple.c | 3 +-
test/esan/TestCases/workingset-memset.cpp | 7 ++-
12 files changed, 191 insertions(+), 44 deletions(-)
create mode 100644 lib/esan/esan_linux.cpp
create mode 100644 test/esan/TestCases/large-stack-linux.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 gcc.
from f9a58c7 Daily bump.
new fe95391 ira.c bb_loop_depth again
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/ira.c | 1 +
2 files changed, 6 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 master
in repository llvm.
from 921e2ae Fix windows build bot failure
new 6be2be5 The patch fixes r271071 Summary: unused variables in Release [...]
new 14cb586 AMDGPU: Add fract intrinsic
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/IR/IntrinsicsAMDGPU.td | 7 ++++
lib/Target/AMDGPU/CIInstructions.td | 19 ----------
lib/Target/AMDGPU/SIISelLowering.cpp | 4 ++
lib/Target/AMDGPU/SIInstructions.td | 34 ++++++++---------
lib/Transforms/Scalar/LoopUnrollPass.cpp | 7 ++--
test/CodeGen/AMDGPU/fract.f64.ll | 65 +++++++++++++++++++++++++++-----
test/CodeGen/AMDGPU/fract.ll | 60 ++++++++++++++++++-----------
test/CodeGen/AMDGPU/llvm.amdgcn.fract.ll | 24 ++++++++++++
8 files changed, 149 insertions(+), 71 deletions(-)
create mode 100644 test/CodeGen/AMDGPU/llvm.amdgcn.fract.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 a4b432f docs: Clarify that LTO visibility is based on source-level sy [...]
new 5684fe5 Clean up: remove trailing spaces in x86 intrinsic headers.
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/Headers/__wmmintrin_aes.h | 4 +-
lib/Headers/__wmmintrin_pclmul.h | 6 +--
lib/Headers/avx512fintrin.h | 102 +++++++++++++++++++--------------------
lib/Headers/avx512vldqintrin.h | 4 +-
lib/Headers/mwaitxintrin.h | 2 +-
lib/Headers/pmmintrin.h | 64 ++++++++++++------------
6 files changed, 91 insertions(+), 91 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 d666be8 Adjust URL in libstdc++ manual to use https
new f9a58c7 Daily bump.
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/DATESTAMP | 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 gcc-6-branch
in repository gcc.
from 26803c2 * config/visium/visium-protos.h (split_double_move): Rename [...]
new 58a87cf Daily bump.
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/DATESTAMP | 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 gcc-5-branch
in repository gcc.
from e7948ae 2016-05-26 Jerry DeLisle <jvdelisle(a)gcc.gnu.org>
new ea01b37 Daily bump.
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/DATESTAMP | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.