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 b6f80bb Auto-generated dependencies for rx-parse.o and rl78-parse.o
new 49d0641 ui-out.c: Remove unused parameter to push_level
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 | 5 +++++
gdb/ui-out.c | 5 ++---
2 files changed, 7 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 e3e8677 ThinLTO: Fix Gold test after caching fix in r283655
new 1a60ba8 [libFuzzer] when shrinking the corpus, delete evicted files p [...]
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/Fuzzer/FuzzerCorpus.h | 27 +++++++++++++++++++--------
lib/Fuzzer/FuzzerDefs.h | 6 ++++--
lib/Fuzzer/FuzzerDriver.cpp | 5 +++--
lib/Fuzzer/FuzzerFlags.def | 2 +-
lib/Fuzzer/FuzzerIO.cpp | 14 ++++++++++----
lib/Fuzzer/FuzzerLoop.cpp | 13 +++++++------
lib/Fuzzer/build.sh | 2 +-
lib/Fuzzer/test/FuzzerUnittest.cpp | 2 +-
8 files changed, 46 insertions(+), 25 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 19e25ec [libFuzzer] control the reload interval by a flag, make it 10 [...]
new e3e8677 ThinLTO: Fix Gold test after caching fix in r283655
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/gold/X86/cache.ll | 16 +++++++++++++++-
1 file changed, 15 insertions(+), 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 c628031 [libFuzzer] fix use-after-free in libFuzzer found by ... fuzzing.
new 19e25ec [libFuzzer] control the reload interval by a flag, make it 10 [...]
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/Fuzzer/FuzzerDriver.cpp | 2 +-
lib/Fuzzer/FuzzerFlags.def | 6 +++---
lib/Fuzzer/FuzzerLoop.cpp | 12 ++++++++----
lib/Fuzzer/FuzzerOptions.h | 2 +-
4 files changed, 13 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 clang.
from e5f86e2 Turn cl::values() (for enum) from a vararg function to using [...]
new 985220f [CUDA] Add #pragma clang force_cuda_host_device_{begin,end} pragmas.
new 470ddb8 [CUDA] Declare our __device__ math functions in the same inli [...]
new 204eb55 [CUDA] Rename cuda_builtin_vars.h to __clang_cuda_builtin_vars.h.
new 8f211f3 [CUDA] Support <complex> and std::min/max on the device.
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:
include/clang/Basic/DiagnosticParseKinds.td | 6 +
include/clang/Parse/Parser.h | 1 +
include/clang/Sema/Sema.h | 14 ++
include/clang/Serialization/ASTBitCodes.h | 6 +-
include/clang/Serialization/ASTReader.h | 4 +
include/clang/Serialization/ASTWriter.h | 1 +
lib/Driver/ToolChains.cpp | 9 +
lib/Frontend/CompilerInvocation.cpp | 7 +-
lib/Headers/CMakeLists.txt | 5 +-
..._builtin_vars.h => __clang_cuda_builtin_vars.h} | 0
lib/Headers/__clang_cuda_cmath.h | 22 ++-
lib/Headers/__clang_cuda_complex_builtins.h | 203 +++++++++++++++++++++
lib/Headers/__clang_cuda_math_forward_declares.h | 20 ++
lib/Headers/__clang_cuda_runtime_wrapper.h | 17 +-
lib/Headers/cuda_wrappers/algorithm | 96 ++++++++++
lib/Headers/cuda_wrappers/complex | 79 ++++++++
lib/Parse/ParsePragma.cpp | 44 +++++
lib/Sema/SemaCUDA.cpp | 27 +++
lib/Serialization/ASTReader.cpp | 9 +
lib/Serialization/ASTWriter.cpp | 9 +
test/CodeGenCUDA/cuda-builtin-vars.cu | 2 +-
test/PCH/pragma-cuda-force-host-device.cu | 27 +++
test/Parser/cuda-force-host-device-templates.cu | 41 +++++
test/Parser/cuda-force-host-device.cu | 36 ++++
test/SemaCUDA/cuda-builtin-vars.cu | 12 +-
25 files changed, 676 insertions(+), 21 deletions(-)
rename lib/Headers/{cuda_builtin_vars.h => __clang_cuda_builtin_vars.h} (100%)
create mode 100644 lib/Headers/__clang_cuda_complex_builtins.h
create mode 100644 lib/Headers/cuda_wrappers/algorithm
create mode 100644 lib/Headers/cuda_wrappers/complex
create mode 100644 test/PCH/pragma-cuda-force-host-device.cu
create mode 100644 test/Parser/cuda-force-host-device-templates.cu
create mode 100644 test/Parser/cuda-force-host-device.cu
--
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 bc45733 [X86][SSE] Regenerate select tests
new c628031 [libFuzzer] fix use-after-free in libFuzzer found by ... fuzzing.
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/Fuzzer/FuzzerCorpus.h | 47 +++++++++++++++++++++++------------------------
1 file changed, 23 insertions(+), 24 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 97486b9 Revert "[X86] Apply the Update LLC Test Checks tool on the ro [...]
new bc45733 [X86][SSE] Regenerate select 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/CodeGen/X86/select.ll | 137 +++++++++++++++++++++++++--------------------
1 file changed, 75 insertions(+), 62 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 e5a054e [X86][SSE] Regenerate and add 32-bit tests to widening tests
new 97486b9 Revert "[X86] Apply the Update LLC Test Checks tool on the ro [...]
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/CodeGen/X86/rotate.ll | 142 +--------------------------------------------
1 file changed, 2 insertions(+), 140 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 3ffe113 Turn cl::values() (for enum) from a vararg function to using [...]
new e5a054e [X86][SSE] Regenerate and add 32-bit tests to widening 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/CodeGen/X86/WidenArith.ll | 34 ++-
test/CodeGen/X86/widen_cast-3.ll | 25 +-
test/CodeGen/X86/widen_cast-5.ll | 24 +-
test/CodeGen/X86/widen_cast-6.ll | 20 +-
test/CodeGen/X86/widen_conversions.ll | 31 ++-
test/CodeGen/X86/widen_load-0.ll | 29 ++-
test/CodeGen/X86/widen_load-2.ll | 453 ++++++++++++++++++++++++----------
test/CodeGen/X86/widen_shuffle-1.ll | 115 ++++++---
8 files changed, 513 insertions(+), 218 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 17d94f6 Revert "[clang-move] Support moving multiple classes in one run."
new 40c049f Turn cl::values() (for enum) from a vararg function to using [...]
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-fixer/tool/ClangIncludeFixer.cpp | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.