Skip to content

Commit

Permalink
Auto merge of rust-lang#84271 - nagisa:nagisa/beta-bump-llvm, r=cuviper
Browse files Browse the repository at this point in the history
[beta] Bump LLVM to a upstream 12.0 release

Currently the `beta` branch utilizes a release candidate of LLVM 12.0. Since then a large number of issues have been fixed upstream, including those that are known to affect Rust code.

It would be unfortunate if we released a stable Rust with all of those issues when we have the fixes in the actual LLVM release and/or our backports of commits that didn't make the release cut on top of it.

cc `@cuviper` / `@nikic`
  • Loading branch information
bors committed Apr 24, 2021
2 parents b2df13e + 46a2c6a commit cc6d66f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/llvm-project
Submodule llvm-project updated 61 files
+49 −29 clang/docs/ReleaseNotes.rst
+0 −2 clang/include/clang/Basic/BuiltinsWebAssembly.def
+0 −6 clang/lib/CodeGen/CGBuiltin.cpp
+1 −1 clang/lib/CodeGen/CGOpenMPRuntime.cpp
+5 −1 clang/lib/Driver/ToolChains/MSVC.cpp
+0 −6 clang/test/CodeGen/builtins-wasm.c
+1 −1 clang/test/Driver/Xlinker-args.c
+3 −3 clang/test/Driver/cl-inputs.c
+1 −1 clang/test/Driver/cl-link-at-file.c
+11 −11 clang/test/Driver/cl-link.c
+4 −4 clang/test/Driver/msvc-link.c
+2 −2 clang/test/OpenMP/linking.c
+2 −2 clang/test/OpenMP/target_teams_distribute_parallel_for_codegen.cpp
+5 −5 clang/test/OpenMP/target_teams_distribute_parallel_for_if_codegen.cpp
+1 −1 clang/test/OpenMP/target_teams_distribute_parallel_for_order_codegen.cpp
+1 −1 clang/test/OpenMP/target_teams_distribute_parallel_for_simd_codegen.cpp
+5 −5 clang/test/OpenMP/target_teams_distribute_parallel_for_simd_if_codegen.cpp
+1 −1 clang/test/OpenMP/teams_distribute_codegen.cpp
+1 −1 clang/test/OpenMP/teams_distribute_parallel_for_codegen.cpp
+1 −1 clang/test/OpenMP/teams_distribute_parallel_for_simd_codegen.cpp
+1 −1 clang/test/OpenMP/teams_distribute_simd_codegen.cpp
+4 −3 llvm/include/llvm-c/Orc.h
+2 −2 llvm/include/llvm/Frontend/OpenMP/OMPKinds.def
+0 −7 llvm/include/llvm/IR/IntrinsicsWebAssembly.td
+1 −1 llvm/lib/ExecutionEngine/Orc/OrcV2CBindings.cpp
+29 −1 llvm/lib/Support/Windows/Path.inc
+1 −1 llvm/lib/Target/AArch64/GISel/AArch64InstructionSelector.cpp
+8 −8 llvm/lib/Target/RISCV/RISCVInstrInfoV.td
+5 −8 llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
+7 −9 llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
+8 −0 llvm/lib/Target/X86/X86FastISel.cpp
+23 −3 llvm/lib/Target/X86/X86FrameLowering.cpp
+4 −0 llvm/lib/Target/X86/X86FrameLowering.h
+1 −0 llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
+12 −7 llvm/lib/Transforms/Utils/SimplifyCFG.cpp
+7 −15 llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+2 −2 llvm/test/CodeGen/AArch64/GlobalISel/select-vector-shift.mir
+44 −0 llvm/test/CodeGen/WebAssembly/simd-comparisons.ll
+0 −10 llvm/test/CodeGen/WebAssembly/simd-intrinsics.ll
+2 −18 llvm/test/CodeGen/WebAssembly/simd-select.ll
+33 −0 llvm/test/CodeGen/X86/pr49587.ll
+1 −0 llvm/test/CodeGen/X86/stack-clash-medium-natural-probes-mutliple-objects.ll
+12 −14 llvm/test/CodeGen/X86/stack-clash-medium-natural-probes.ll
+27 −2 llvm/test/CodeGen/X86/stack-clash-medium.ll
+14 −16 llvm/test/CodeGen/X86/stack-clash-unknown-call.ll
+8 −8 llvm/test/MC/RISCV/rvv/aliases.s
+32 −32 llvm/test/MC/RISCV/rvv/load.s
+8 −8 llvm/test/MC/RISCV/rvv/store.s
+14 −7 llvm/test/MC/WebAssembly/simd-encodings.s
+66 −0 llvm/test/Transforms/InstCombine/zext-or-icmp.ll
+27 −0 llvm/test/Transforms/LoopVectorize/irregular_type.ll
+3 −3 llvm/test/Transforms/OpenMP/add_attributes.ll
+49 −0 llvm/test/Transforms/SimplifyCFG/sink-inf-loop.ll
+4 −2 openmp/libomptarget/include/omptarget.h
+2 −1 openmp/libomptarget/src/exports
+6 −1 openmp/libomptarget/src/interface.cpp
+2 −2 openmp/libomptarget/src/omptarget.cpp
+14 −1 openmp/runtime/src/kmp_runtime.cpp
+4 −3 openmp/runtime/src/kmp_settings.cpp
+45 −0 openmp/runtime/test/tasking/hidden_helper_task/capacity_mix_threads.cpp
+31 −0 openmp/runtime/test/tasking/hidden_helper_task/capacity_nthreads.cpp

0 comments on commit cc6d66f

Please sign in to comment.