Skip to content

Commit

Permalink
Bump llvm-project from a7c393d to 9d1002a
Browse files Browse the repository at this point in the history
Bumps [llvm-project](https://github.com/Xilinx/llvm-project) from `a7c393d` to `9d1002a`.
- [Commits](Xilinx/llvm-project@a7c393d...9d1002a)

---
updated-dependencies:
- dependency-name: llvm-project
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Sep 6, 2024
1 parent ed870f3 commit a2ddfca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm-project
Submodule llvm-project updated 81 files
+7 −0 clang/docs/ReleaseNotes.rst
+6 −3 clang/include/clang/Parse/Parser.h
+1 −1 clang/lib/AST/APValue.cpp
+1 −1 clang/lib/Analysis/MacroExpansionContext.cpp
+9 −1 clang/lib/Parse/ParseStmt.cpp
+3 −3 clang/lib/Sema/SemaExprCXX.cpp
+10 −0 clang/lib/Sema/SemaLookup.cpp
+1 −3 clang/lib/Sema/SemaStmtAttr.cpp
+2 −1 clang/test/C/C99/block-scopes.c
+39 −0 clang/test/Parser/decls.c
+1 −2 clang/test/SemaCXX/invalid-if-constexpr.cpp
+4 −0 clang/test/SemaCXX/invalid-this-in-lambda.cpp
+8 −0 clang/test/SemaCXX/typo-correction-builtin-func.cpp
+4 −2 clang/test/SemaOpenACC/parallel-loc-and-stmt.c
+0 −8 clang/unittests/Interpreter/IncrementalProcessingTest.cpp
+166 −13 lld/MachO/ObjC.cpp
+210 −0 lld/test/MachO/objc-category-merging-complete-test.s
+124 −1 lld/test/MachO/objc-category-merging-minimal.s
+2 −0 lldb/bindings/headers.swig
+3 −0 lldb/bindings/interface/SBAddressRangeDocstrings.i
+11 −0 lldb/bindings/interface/SBAddressRangeExtensions.i
+3 −0 lldb/bindings/interface/SBAddressRangeListDocstrings.i
+29 −0 lldb/bindings/interface/SBAddressRangeListExtensions.i
+6 −0 lldb/bindings/interfaces.swig
+2 −0 lldb/include/lldb/API/LLDB.h
+1 −0 lldb/include/lldb/API/SBAddress.h
+66 −0 lldb/include/lldb/API/SBAddressRange.h
+54 −0 lldb/include/lldb/API/SBAddressRangeList.h
+4 −0 lldb/include/lldb/API/SBBlock.h
+2 −0 lldb/include/lldb/API/SBDefines.h
+3 −0 lldb/include/lldb/API/SBFunction.h
+2 −0 lldb/include/lldb/API/SBStream.h
+1 −0 lldb/include/lldb/API/SBTarget.h
+14 −0 lldb/include/lldb/Core/AddressRange.h
+51 −0 lldb/include/lldb/Core/AddressRangeListImpl.h
+2 −0 lldb/include/lldb/Symbol/Block.h
+3 −0 lldb/include/lldb/lldb-forward.h
+2 −0 lldb/source/API/CMakeLists.txt
+103 −0 lldb/source/API/SBAddressRange.cpp
+94 −0 lldb/source/API/SBAddressRangeList.cpp
+10 −0 lldb/source/API/SBBlock.cpp
+14 −0 lldb/source/API/SBFunction.cpp
+43 −0 lldb/source/Core/AddressRange.cpp
+50 −0 lldb/source/Core/AddressRangeListImpl.cpp
+1 −0 lldb/source/Core/CMakeLists.txt
+10 −5 lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.cpp
+16 −0 lldb/source/Symbol/Block.cpp
+3 −0 lldb/test/API/python_api/address_range/Makefile
+256 −0 lldb/test/API/python_api/address_range/TestAddressRange.py
+8 −0 lldb/test/API/python_api/address_range/main.cpp
+0 −5 llvm/include/llvm/Analysis/ScalarEvolution.h
+11 −1 llvm/include/llvm/Transforms/Scalar/Reassociate.h
+19 −14 llvm/lib/Analysis/LoopAccessAnalysis.cpp
+22 −26 llvm/lib/Analysis/ScalarEvolution.cpp
+1 −1 llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp
+11 −8 llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+2 −0 llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
+6 −2 llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
+18 −16 llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
+2 −4 llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
+22 −13 llvm/lib/Transforms/Scalar/Reassociate.cpp
+9 −1 llvm/test/Analysis/LoopAccessAnalysis/depend_diff_types.ll
+6 −1 llvm/test/Analysis/LoopAccessAnalysis/non-constant-strides-backward.ll
+1,757 −0 llvm/test/CodeGen/AMDGPU/select-flags-to-fmin-fmax.ll
+19 −0 llvm/test/CodeGen/WebAssembly/eh-option-errors.ll
+0 −3 llvm/test/CodeGen/WebAssembly/lower-em-ehsjlj-options.ll
+20 −20 llvm/test/Transforms/Reassociate/local-cse.ll
+79 −0 llvm/test/Transforms/Reassociate/reassoc-add-nsw.ll
+2 −0 llvm/utils/gn/secondary/lldb/source/API/BUILD.gn
+1 −0 llvm/utils/gn/secondary/lldb/source/Core/BUILD.gn
+0 −6 mlir/include/mlir/Dialect/SparseTensor/Transforms/Passes.h
+0 −36 mlir/include/mlir/Dialect/SparseTensor/Transforms/Passes.td
+3 −0 mlir/include/mlir/Dialect/Tosa/Transforms/Passes.h
+10 −11 mlir/lib/Conversion/TosaToTensor/TosaToTensor.cpp
+1 −1 mlir/lib/Conversion/TosaToTensor/TosaToTensorPass.cpp
+0 −13 mlir/lib/Dialect/SparseTensor/Transforms/SparseTensorPasses.cpp
+1 −0 mlir/lib/Dialect/Tosa/Transforms/CMakeLists.txt
+52 −0 mlir/lib/Dialect/Tosa/Transforms/TosaTypeConverters.cpp
+14 −0 mlir/test/Conversion/TosaToTensor/tosa-to-tensor.mlir
+23 −10 openmp/tools/archer/ompt-tsan.cpp
+1 −1 polly/include/polly/ScheduleTreeTransform.h

0 comments on commit a2ddfca

Please sign in to comment.