This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository clang.
from dee3c34810 [C++2a] Implement operator<=> CodeGen and ExprConstant
new b226f6bedd Relax a FileCheck pattern to make it pass on Windows.
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/Driver/fsanitize-blacklist.c | 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 master
in repository llvm.
from 388124a55a0 [llvm-mca][x86] Remove addsubpd from SSE2 tests
new 75acc73db13 Remove explicit setting of the CFI jumptable section name, [...]
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/IPO/LowerTypeTests.cpp | 6 ------
test/Transforms/LowerTypeTests/function-arm-thumb.ll | 4 ++--
test/Transforms/LowerTypeTests/function-disjoint.ll | 4 ++--
test/Transforms/LowerTypeTests/function-ext.ll | 2 +-
test/Transforms/LowerTypeTests/function-weak.ll | 4 ++--
test/Transforms/LowerTypeTests/function.ll | 8 ++++----
test/Transforms/LowerTypeTests/section.ll | 2 +-
7 files changed, 12 insertions(+), 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 lldb.
from bbfe78b58 Fix "file ./a.out" and file "../a.out" so that is works after [...]
new ef5067ddb Test Commit: fix a comment to be grammatically correct
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:
packages/Python/lldbsuite/test/dotest.py | 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 master
in repository llvm.
from 6608b6daee5 [tools] Adjust the lit config for llvm-strip
new 388124a55a0 [llvm-mca][x86] Remove addsubpd from SSE2 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/Atom/resources-sse2.s | 9 +--------
test/tools/llvm-mca/X86/Broadwell/resources-sse2.s | 9 +--------
test/tools/llvm-mca/X86/BtVer2/resources-sse2.s | 9 +--------
test/tools/llvm-mca/X86/Haswell/resources-sse2.s | 9 +--------
test/tools/llvm-mca/X86/SLM/resources-sse2.s | 9 +--------
test/tools/llvm-mca/X86/SandyBridge/resources-sse2.s | 9 +--------
test/tools/llvm-mca/X86/SkylakeClient/resources-sse2.s | 9 +--------
test/tools/llvm-mca/X86/SkylakeServer/resources-sse2.s | 9 +--------
test/tools/llvm-mca/X86/Znver1/resources-sse2.s | 9 +--------
9 files changed, 9 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 clang.
from 23ea169fe0 [CFI] Force LLVM to die if the implicit blacklist files cann [...]
new dee3c34810 [C++2a] Implement operator<=> CodeGen and ExprConstant
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/AST/ASTContext.h | 5 +
include/clang/AST/ComparisonCategories.h | 255 ++++++++++++
include/clang/AST/Expr.h | 4 +-
include/clang/Basic/DiagnosticSemaKinds.td | 14 +
include/clang/Sema/Overload.h | 7 +-
include/clang/Sema/Sema.h | 24 +-
lib/AST/ASTContext.cpp | 3 +-
lib/AST/CMakeLists.txt | 1 +
lib/AST/ComparisonCategories.cpp | 220 ++++++++++
lib/AST/Expr.cpp | 4 +-
lib/AST/ExprConstant.cpp | 617 ++++++++++++++++-------------
lib/CodeGen/CGExprAgg.cpp | 145 +++++++
lib/Sema/Sema.cpp | 11 +-
lib/Sema/SemaDeclCXX.cpp | 129 ++++++
lib/Sema/SemaExpr.cpp | 333 +++++++++++++---
lib/Sema/SemaOverload.cpp | 57 ++-
test/CodeGenCXX/Inputs/std-compare.h | 437 ++++++++++++++++++++
test/CodeGenCXX/cxx2a-compare.cpp | 186 +++++++++
test/PCH/Inputs/std-compare.h | 437 ++++++++++++++++++++
test/PCH/cxx2a-compare.cpp | 28 ++
test/SemaCXX/Inputs/std-compare.h | 437 ++++++++++++++++++++
test/SemaCXX/compare-cxx2a.cpp | 324 +++++++++++++--
test/SemaCXX/constant-expression-cxx2a.cpp | 197 ++++++++-
test/SemaCXX/std-compare-cxx2a.cpp | 65 +++
24 files changed, 3548 insertions(+), 392 deletions(-)
create mode 100644 include/clang/AST/ComparisonCategories.h
create mode 100644 lib/AST/ComparisonCategories.cpp
create mode 100644 test/CodeGenCXX/Inputs/std-compare.h
create mode 100644 test/CodeGenCXX/cxx2a-compare.cpp
create mode 100644 test/PCH/Inputs/std-compare.h
create mode 100644 test/PCH/cxx2a-compare.cpp
create mode 100644 test/SemaCXX/Inputs/std-compare.h
create mode 100644 test/SemaCXX/std-compare-cxx2a.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.
Christophe Lyon pushed a change to branch master
in repository toolchain/jenkins-scripts.
from c9d48c9 tcwg-cleanup-stale-containers.sh: Fix typo.
new 46491cb tcwg-cleanup-stale-containers.sh: Fix another typo...
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:
tcwg-cleanup-stale-containers.sh | 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 master
in repository llvm.
from d1d32f238d7 [X86] Split WriteFAdd/WriteFCmp/WriteFMul schedule classes
new 6441549f058 [llvm-rc] Fix build: missing 'override'.
new 6608b6daee5 [tools] Adjust the lit config for llvm-strip
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:
test/lit.cfg.py | 3 ++-
tools/llvm-rc/ResourceFileWriter.h | 2 +-
2 files changed, 3 insertions(+), 2 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 31dc80fca0c [llvm-rc] Implement the BITMAP resource type
new d1d32f238d7 [X86] Split WriteFAdd/WriteFCmp/WriteFMul schedule classes
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/X86InstrAVX512.td | 3 +-
lib/Target/X86/X86InstrSSE.td | 40 +++++++++----------
lib/Target/X86/X86SchedBroadwell.td | 29 ++++++++++----
lib/Target/X86/X86SchedHaswell.td | 49 +++++++++++------------
lib/Target/X86/X86SchedSandyBridge.td | 29 ++++++++++----
lib/Target/X86/X86SchedSkylakeClient.td | 47 +++++++++++-----------
lib/Target/X86/X86SchedSkylakeServer.td | 43 ++++++++++----------
lib/Target/X86/X86Schedule.td | 57 +++++++++++++++++----------
lib/Target/X86/X86ScheduleAtom.td | 28 +++++++------
lib/Target/X86/X86ScheduleBtVer2.td | 38 ++++++------------
lib/Target/X86/X86ScheduleSLM.td | 26 ++++++++----
lib/Target/X86/X86ScheduleZnver1.td | 12 ++++++
test/CodeGen/X86/sse3-schedule.ll | 2 +-
test/tools/llvm-mca/X86/Atom/resources-sse2.s | 6 +--
test/tools/llvm-mca/X86/Atom/resources-sse3.s | 6 +--
15 files changed, 236 insertions(+), 179 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 ffe5542eab [Driver] Use -fuse-line-directives by default in MSVC mode
new 8052cdc639 Correct warning on Float->Integer conversions.
new 23ea169fe0 [CFI] Force LLVM to die if the implicit blacklist files cann [...]
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/clang/Basic/DiagnosticSemaKinds.td | 6 ++++++
lib/Driver/SanitizerArgs.cpp | 4 ++++
lib/Sema/SemaChecking.cpp | 17 +++++++++++++++++
.../share/cfi_blacklist.txt | 0
test/Driver/fsanitize-blacklist.c | 4 ++++
test/Frontend/dependency-gen.c | 2 +-
test/SemaCXX/coroutines.cpp | 2 +-
test/SemaCXX/warn-float-conversion.cpp | 6 +++---
test/SemaCXX/warn-literal-conversion.cpp | 7 +++++++
9 files changed, 43 insertions(+), 5 deletions(-)
copy bindings/python/tests/__init__.py => test/Driver/Inputs/resource_dir_with_cfi [...]
--
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 694780d67ee [llvm-rc] Fix alphabetical order of cases. NFC.
new 526033340b9 [llvm-rc] Exclude padding from sizes in versioninfo resources
new ab499d8976c [llvm-rc] Allow optional commas between the string table in [...]
new 31dc80fca0c [llvm-rc] Implement the BITMAP resource type
The 3 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-rc/Inputs/tag-stringtable-basic.rc | 5 ++--
test/tools/llvm-rc/Inputs/versioninfo-padding.rc | 25 ++++++++++++++++
test/tools/llvm-rc/include-paths.test | 17 ++++++-----
test/tools/llvm-rc/versioninfo-padding.test | 33 ++++++++++++++++++++++
tools/llvm-rc/ResourceFileWriter.cpp | 31 ++++++++++++++++++--
tools/llvm-rc/ResourceFileWriter.h | 4 +++
tools/llvm-rc/ResourceScriptParser.cpp | 8 ++++++
tools/llvm-rc/ResourceScriptParser.h | 1 +
tools/llvm-rc/ResourceScriptStmt.cpp | 4 +++
tools/llvm-rc/ResourceScriptStmt.h | 24 ++++++++++++++++
tools/llvm-rc/ResourceVisitor.h | 1 +
11 files changed, 140 insertions(+), 13 deletions(-)
create mode 100644 test/tools/llvm-rc/Inputs/versioninfo-padding.rc
create mode 100644 test/tools/llvm-rc/versioninfo-padding.test
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.