Skip to content

Commit

Permalink
Auto merge of #88765 - mk12:update-llvm, r=cuviper
Browse files Browse the repository at this point in the history
Update LLVM submodule

This merges upstream `release/13.x` changes to our fork. In particular,
this includes the bugfix https://reviews.llvm.org/D108608 (see also
https://bugs.llvm.org/show_bug.cgi?id=51637).

The motivation for this is fixing Rust coverage in Fuchsia: https://fxbug.dev/77427.
  • Loading branch information
bors committed Sep 12, 2021
2 parents 0273e3b + 8bfd872 commit 0212c70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/llvm-project
Submodule llvm-project updated 76 files
+37 −35 clang/docs/OpenCLSupport.rst
+78 −3 clang/docs/ReleaseNotes.rst
+5 −0 clang/lib/Basic/Targets/OSTargets.h
+0 −1 clang/lib/Driver/Driver.cpp
+2 −1 clang/lib/Driver/ToolChains/CommonArgs.cpp
+7 −0 clang/lib/Driver/ToolChains/OpenBSD.cpp
+1 −1 clang/lib/Format/TokenAnnotator.cpp
+29 −12 clang/lib/Format/UnwrappedLineParser.cpp
+1 −1 clang/lib/Headers/openmp_wrappers/complex
+1 −1 clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
+1 −1 clang/lib/Sema/TreeTransform.h
+2 −0 clang/lib/Serialization/ASTReader.cpp
+34 −0 clang/test/CXX/class/class.init/class.copy.elision/p3.cpp
+22 −0 clang/test/CXX/dcl/dcl.spec/dcl.type/dcl.spec.auto/p6.cpp
+18 −1 clang/test/Driver/fopenmp.c
+85 −0 clang/test/Headers/amdgcn-openmp-device-math-complex.cpp
+10 −0 clang/test/Preprocessor/init.c
+7 −0 clang/unittests/Driver/ToolChainTest.cpp
+46 −1 clang/unittests/Format/FormatTest.cpp
+3 −2 compiler-rt/lib/profile/InstrProfilingFile.c
+3 −2 compiler-rt/lib/profile/InstrProfilingPlatformFuchsia.c
+5 −2 compiler-rt/lib/scudo/standalone/CMakeLists.txt
+4 −0 libcxx/test/libcxx/gdb/gdb_pretty_printer_test.sh.cpp
+2 −0 libunwind/src/Unwind-EHABI.cpp
+1 −0 llvm/cmake/modules/AddLLVM.cmake
+2 −0 llvm/docs/ReleaseNotes.rst
+1 −1 llvm/include/llvm/Analysis/LazyCallGraph.h
+1 −1 llvm/include/llvm/Analysis/LoopInfo.h
+1 −1 llvm/include/llvm/Analysis/LoopNestAnalysis.h
+1 −1 llvm/include/llvm/Analysis/TargetTransformInfo.h
+1 −1 llvm/include/llvm/CodeGen/MachineFunction.h
+2 −1 llvm/include/llvm/IR/Function.h
+3 −3 llvm/include/llvm/IR/Module.h
+1 −1 llvm/include/llvm/Transforms/Scalar/MemCpyOptimizer.h
+1 −1 llvm/lib/Analysis/ScalarEvolution.cpp
+1 −5 llvm/lib/Analysis/TargetTransformInfo.cpp
+15 −10 llvm/lib/CodeGen/HardwareLoops.cpp
+2 −1 llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+4 −2 llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+5 −3 llvm/lib/IR/Constants.cpp
+19 −3 llvm/lib/Linker/LinkModules.cpp
+4 −1 llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
+1 −1 llvm/lib/Target/AArch64/SMEInstrFormats.td
+1 −1 llvm/lib/Target/RISCV/RISCVInstrInfo.cpp
+6 −2 llvm/lib/Target/X86/X86FrameLowering.cpp
+28 −12 llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
+31 −12 llvm/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp
+27 −9 llvm/lib/Transforms/Utils/SimplifyCFG.cpp
+11 −2 llvm/runtimes/CMakeLists.txt
+40 −0 llvm/test/Analysis/ScalarEvolution/max-backedge-taken-count-guard-info.ll
+31 −0 llvm/test/CodeGen/AArch64/arm64-srl-and.ll
+57 −28 llvm/test/CodeGen/AArch64/sve-fixed-length-masked-gather.ll
+53 −23 llvm/test/CodeGen/AArch64/sve-fixed-length-masked-scatter.ll
+20 −0 llvm/test/CodeGen/AArch64/sve-no-typesize-warnings.ll
+14 −10 llvm/test/CodeGen/PowerPC/loop-instr-prep-non-const-increasement.ll
+6 −2 llvm/test/CodeGen/PowerPC/mma-phi-accs.ll
+45 −0 llvm/test/CodeGen/RISCV/rvv/commuted-op-indices-regression.mir
+1 −1 llvm/test/CodeGen/Thumb2/mve-float16regloops.ll
+1 −1 llvm/test/CodeGen/Thumb2/mve-float32regloops.ll
+108 −110 llvm/test/CodeGen/Thumb2/mve-postinc-lsr.ll
+20 −0 llvm/test/CodeGen/X86/20210831-inlineasm.ll
+58 −39 llvm/test/CodeGen/X86/stack-clash-large.ll
+2 −0 llvm/test/ExecutionEngine/OrcLazy/debug-descriptor-elf-minimal.ll
+2 −0 llvm/test/ExecutionEngine/OrcLazy/debug-objects-elf-minimal.ll
+10 −1 llvm/test/Linker/comdat4.ll
+50 −0 llvm/test/MC/AArch64/SME/mova-diagnostics.s
+9 −0 llvm/test/Transforms/InstSimplify/ConstProp/vecreduce.ll
+6 −3 llvm/test/Transforms/LoopUnroll/peel-loop-inner.ll
+101 −0 llvm/test/Transforms/MemCpyOpt/vscale-crashes.ll
+54 −36 llvm/test/Transforms/PhaseOrdering/X86/vector-reductions-logical.ll
+71 −0 llvm/test/Transforms/SimpleLoopUnswitch/nontrivial-unswitch-markloopasdeleted.ll
+43 −52 llvm/test/Transforms/SimplifyCFG/fold-branch-to-common-dest.ll
+59 −0 llvm/test/tools/llvm-objdump/X86/elf-disassemble-relocs-exec.test
+7 −2 llvm/tools/llvm-objdump/llvm-objdump.cpp
+2 −0 openmp/libomptarget/DeviceRTL/CMakeLists.txt
+9 −1 openmp/libomptarget/deviceRTLs/amdgcn/CMakeLists.txt

0 comments on commit 0212c70

Please sign in to comment.