This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository lld.
from 56ca805 Avoid use of uninitialized iterators.
new f4d0622 Remove `else` after `break`.
new e54af4a Replace parallel arrays with a StringSwitch.
new 0bc06ee Return a vector from createPhdrs instead of return nothing.
new 4dbea22 Function names should start with lowercase letters.
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:
ELF/LinkerScript.cpp | 56 +++++++++++++++++++++++++++-------------------------
ELF/Writer.cpp | 48 +++++++++++++++++++++++---------------------
ELF/Writer.h | 2 +-
3 files changed, 56 insertions(+), 50 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 4951996 GlobalISel: implement low-level type with just size & vector lanes.
new 6d11357 GlobalISel: properly conditionalize LLT use.
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/llvm/CodeGen/MachineInstr.h | 2 --
1 file changed, 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 clang.
from 3b75c09 [modules] Don't emit initializers for VarDecls within a modul [...]
new abc509a [OpenCL] AMDGCN target will generate images in constant addre [...]
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/CodeGen/CGOpenCLRuntime.cpp | 3 ++-
lib/CodeGen/TargetInfo.cpp | 10 ++++++++++
lib/CodeGen/TargetInfo.h | 3 +++
test/CodeGenOpenCL/opencl_types.cl | 39 +++++++++++++++++++++++---------------
4 files changed, 39 insertions(+), 16 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 c5f802f Properly ifdef the use of cpuid.
new 4951996 GlobalISel: implement low-level type with just size & vector lanes.
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/llvm/CodeGen/GlobalISel/MachineIRBuilder.h | 7 +-
include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h | 44 +----
include/llvm/CodeGen/LowLevelType.h | 187 +++++++++++++++++++++
include/llvm/CodeGen/MachineInstr.h | 14 +-
lib/CodeGen/CMakeLists.txt | 1 +
lib/CodeGen/GlobalISel/IRTranslator.cpp | 4 +-
lib/CodeGen/GlobalISel/MachineIRBuilder.cpp | 14 +-
lib/CodeGen/GlobalISel/RegisterBankInfo.cpp | 46 ++---
lib/CodeGen/LowLevelType.cpp | 46 +++++
lib/CodeGen/MIRParser/MILexer.cpp | 10 +-
lib/CodeGen/MIRParser/MILexer.h | 1 +
lib/CodeGen/MIRParser/MIParser.cpp | 77 +++++----
lib/CodeGen/MIRPrinter.cpp | 4 +-
lib/CodeGen/MachineInstr.cpp | 18 +-
lib/Target/AArch64/AArch64RegisterBankInfo.cpp | 25 +++
lib/Target/AArch64/AArch64RegisterBankInfo.h | 2 +
.../AArch64/GlobalISel/arm64-irtranslator.ll | 8 +-
.../AArch64/GlobalISel/arm64-regbankselect.mir | 42 ++---
.../AMDGPU/GlobalISel/amdgpu-irtranslator.ll | 2 +-
test/CodeGen/MIR/X86/generic-instr-type-error.mir | 4 +-
test/CodeGen/MIR/X86/generic-virtual-registers.mir | 20 +--
21 files changed, 393 insertions(+), 183 deletions(-)
create mode 100644 include/llvm/CodeGen/LowLevelType.h
create mode 100644 lib/CodeGen/LowLevelType.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 clang.
from bb573cb Fix modules self-host: add missing include and forward-decl.
new 3b75c09 [modules] Don't emit initializers for VarDecls within a modul [...]
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 | 23 ++++++++
include/clang/Sema/Sema.h | 8 ++-
include/clang/Serialization/ASTBitCodes.h | 3 ++
lib/AST/ASTContext.cpp | 63 ++++++++++++++++++++++
lib/CodeGen/CodeGenModule.cpp | 16 ++++--
lib/Sema/SemaDecl.cpp | 35 +++++++-----
lib/Sema/SemaLookup.cpp | 5 +-
lib/Serialization/ASTReader.cpp | 7 +++
lib/Serialization/ASTReaderDecl.cpp | 14 +++--
lib/Serialization/ASTWriter.cpp | 23 +++++++-
lib/Serialization/ASTWriterDecl.cpp | 10 ++--
test/Modules/Inputs/unused-global-init/init.h | 1 +
.../Inputs/unused-global-init/module.modulemap | 3 ++
test/Modules/Inputs/unused-global-init/other.h | 1 +
test/Modules/Inputs/unused-global-init/unused.h | 1 +
test/Modules/Inputs/unused-global-init/used.h | 2 +
test/Modules/odr.cpp | 8 +--
test/Modules/templates.mm | 8 +--
test/Modules/unused-global-init.cpp | 37 +++++++++++++
19 files changed, 229 insertions(+), 39 deletions(-)
create mode 100644 test/Modules/Inputs/unused-global-init/init.h
create mode 100644 test/Modules/Inputs/unused-global-init/module.modulemap
create mode 100644 test/Modules/Inputs/unused-global-init/other.h
create mode 100644 test/Modules/Inputs/unused-global-init/unused.h
create mode 100644 test/Modules/Inputs/unused-global-init/used.h
create mode 100644 test/Modules/unused-global-init.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 llvm.
from 6de1b85 [NVPTX] deal with all aggregate return types.
new c5f802f Properly ifdef the use of cpuid.
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/Support/Host.cpp | 7 ++++++-
1 file changed, 6 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 lld.
from b385deb Add yet more explicit template instantiations. These were alw [...]
new 56ca805 Avoid use of uninitialized iterators.
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:
ELF/Relocations.cpp | 8 ++++----
1 file changed, 4 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 lld.
from 5903826 Create thunks before regular relocation scan.
new b385deb Add yet more explicit template instantiations. These were alw [...]
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:
ELF/Writer.cpp | 13 +++++++++++++
1 file changed, 13 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 5f9c124 [OptDiag] Fix function comment
new 86d9bce [NVPTX] Improve lowering of byval args of device functions.
new 6de1b85 [NVPTX] deal with all aggregate return types.
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/NVPTX/NVPTXAsmPrinter.cpp | 12 +++----
lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp | 11 ++++---
lib/Target/NVPTX/NVPTXISelLowering.cpp | 13 ++------
lib/Target/NVPTX/NVPTXLowerKernelArgs.cpp | 53 ++++++++++++++++++++----------
test/CodeGen/NVPTX/aggregate-return.ll | 43 ++++++++++++++++++++++++
test/CodeGen/NVPTX/bug21465.ll | 2 +-
test/CodeGen/NVPTX/lower-kernel-ptr-arg.ll | 32 ++++++++++++++----
test/CodeGen/NVPTX/vector-return.ll | 14 --------
8 files changed, 120 insertions(+), 60 deletions(-)
create mode 100644 test/CodeGen/NVPTX/aggregate-return.ll
delete mode 100644 test/CodeGen/NVPTX/vector-return.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 gcc.
from d868016 Document LWG DR 2684 status and regenerate libstdc++ manual
new 09d899d S/390: Remove mode size check in encode_section_info.
new 24acd4a C++ FE: handle misspelled identifiers and typenames
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:
gcc/ChangeLog | 5 +
gcc/config/s390/s390.c | 7 +-
gcc/cp/ChangeLog | 22 ++
gcc/cp/name-lookup.c | 116 +++++++++-
gcc/cp/parser.c | 43 +++-
gcc/cp/parser.h | 1 +
gcc/cp/search.c | 8 +-
gcc/testsuite/ChangeLog | 11 +
gcc/testsuite/g++.dg/spellcheck-identifiers-2.C | 43 ++++
gcc/testsuite/g++.dg/spellcheck-identifiers.C | 255 +++++++++++++++++++++
.../spellcheck-typenames.C} | 75 +++---
11 files changed, 512 insertions(+), 74 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/spellcheck-identifiers-2.C
create mode 100644 gcc/testsuite/g++.dg/spellcheck-identifiers.C
copy gcc/testsuite/{gcc.dg/spellcheck-typenames.c => g++.dg/spellcheck-typenames.C} (53%)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.