This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/llvm-master-aarch64-lts-allmodconfig in repository toolchain/ci/llvm-project.
from a8dad5c79b6 [BPF] Fix bpf llvm-objdump issues. adds 31f829f0cd4 [X86] Add a one use check to the combineStore code that han [...] adds 8651ec6a844 TableGen: Revert changes from r369038 adds cfdc2b9bd92 AMDGPU: Disambiguate v3f16 format in load/store tables adds 479f3bdb2c8 AMDGPU: Fix iterator error when lowering SI_END_CF adds f43106e341d [SelectionDAG] Add a node creation debug message to getMach [...] adds 74168ded039 [TargetLowering] Teach computeRegisterProperties to only wi [...] adds b4806822d2d [Diagnostics] Improve -Wsizeof-pointer-div adds 9b957d33217 [InstCombine] Cherry-pick NFC cleanups of foldShiftIntoShif [...] adds 000dfdab2df [MC] MCFixup - Fix cppcheck + MSVC analyzer uninitialized m [...] adds 133e2d7bf83 [X86][SSE] Improve PACKSS shuffle tests to better match cod [...] adds a66edd86e27 [X86] isTargetShuffleEquivalent - early out on illegal shuf [...] adds fee2546f3f2 [X86] isTargetShuffleEquivalent - add BUILD_VECTOR matching adds 63b3c56fca6 Fix signed/unsigned comparison warning. NFCI. adds 37860d524e8 [clang-format] Fix a bug that joins template closer and = adds 9e074c06fe0 [X86] Improve lower1BitShuffle handling for KSHIFTL on narr [...] adds c944438dfdb [Docs] Test commit adds 920890e2681 [Diagnostics] Diagnose misused xor as pow adds a264b6074a4 [ORC] Remove some dead code. adds cf276ba82e8 [ORC] Make sure we linker-mangle symbol names in the Specul [...] adds 45e598d1357 [CMake] Update CMAKE_OSX_DEPLOYMENT_TARGET to 10.12. adds c313944da62 [cmake] Move blocks out of redundant else( MSVC ); NFC
No new revisions were added by this update.
Summary of changes: clang/docs/ClangFormatStyleOptions.rst | 4 +- clang/include/clang/Basic/DiagnosticGroups.td | 1 + clang/include/clang/Basic/DiagnosticSemaKinds.td | 11 ++ clang/include/clang/Format/Format.h | 4 +- clang/lib/Format/TokenAnnotator.cpp | 2 +- clang/lib/Sema/SemaExpr.cpp | 116 +++++++++++- clang/test/Sema/div-sizeof-ptr.cpp | 24 ++- clang/test/SemaCXX/warn-xor-as-pow.cpp | 105 +++++++++++ clang/unittests/Format/FormatTest.cpp | 9 +- lldb/cmake/caches/Apple-lldb-Xcode.cmake | 2 +- llvm/cmake/modules/HandleLLVMOptions.cmake | 121 +++++++------ llvm/docs/TestingGuide.rst | 2 +- llvm/examples/SpeculativeJIT/SpeculativeJIT.cpp | 2 +- .../include/llvm/ExecutionEngine/Orc/Speculation.h | 22 +-- llvm/include/llvm/MC/MCFixup.h | 6 +- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 1 + llvm/lib/CodeGen/TargetLoweringBase.cpp | 34 ++-- llvm/lib/Target/AMDGPU/BUFInstructions.td | 200 +++++++++++---------- llvm/lib/Target/AMDGPU/SIInstrInfo.td | 5 +- llvm/lib/Target/AMDGPU/SILoadStoreOptimizer.cpp | 4 +- llvm/lib/Target/AMDGPU/SILowerControlFlow.cpp | 8 +- llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp | 10 +- llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h | 4 +- llvm/lib/Target/X86/X86ISelLowering.cpp | 76 +++++--- .../Transforms/InstCombine/InstCombineCompares.cpp | 13 +- llvm/test/CodeGen/AMDGPU/si-lower-control-flow.mir | 69 ++++++- llvm/test/CodeGen/X86/avx512-trunc.ll | 20 +++ llvm/test/CodeGen/X86/kshift.ll | 50 ++---- llvm/test/CodeGen/X86/packss.ll | 115 +++++++++--- llvm/test/CodeGen/X86/promote-vec3.ll | 116 ++++++++---- llvm/test/CodeGen/X86/vec_cast.ll | 46 +++-- llvm/test/CodeGen/X86/vec_setcc.ll | 45 +++++ llvm/test/CodeGen/X86/widen_load-2.ll | 20 ++- llvm/utils/TableGen/IntrinsicEmitter.cpp | 4 +- 34 files changed, 908 insertions(+), 363 deletions(-) create mode 100644 clang/test/SemaCXX/warn-xor-as-pow.cpp