Skip to content

Commit

Permalink
llvm: Update baseline to 219ea26733f96e0c63796bed8e507f7bb1a02140
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 21, 2024
1 parent 8ab70ef commit 5d42b43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/llvm-project
Submodule llvm-project updated 99 files
+2 −2 bolt/include/bolt/Passes/StokeInfo.h
+1 −3 bolt/runtime/instr.cpp
+3 −1 clang-tools-extra/clang-tidy/bugprone/ForwardingReferenceOverloadCheck.cpp
+3 −2 clang-tools-extra/clang-tidy/bugprone/IncorrectEnableIfCheck.cpp
+5 −3 clang-tools-extra/clang-tidy/modernize/UseConstraintsCheck.cpp
+6 −2 clang-tools-extra/clangd/Hover.cpp
+1 −1 clang/include/clang/AST/ASTNodeTraverser.h
+6 −11 clang/include/clang/AST/DeclTemplate.h
+1 −1 clang/include/clang/AST/RecursiveASTVisitor.h
+3 −1 clang/include/clang/Sema/Sema.h
+2 −1 clang/lib/AST/ASTContext.cpp
+3 −3 clang/lib/AST/ASTImporter.cpp
+2 −1 clang/lib/AST/DeclPrinter.cpp
+12 −5 clang/lib/AST/DeclTemplate.cpp
+1 −1 clang/lib/AST/JSONNodeDumper.cpp
+7 −5 clang/lib/AST/ODRDiagsEmitter.cpp
+1 −1 clang/lib/AST/ODRHash.cpp
+2 −2 clang/lib/AST/TypePrinter.cpp
+4 −4 clang/lib/ExtractAPI/DeclarationFragments.cpp
+2 −1 clang/lib/Index/IndexDecl.cpp
+28 −20 clang/lib/Sema/HLSLExternalSemaSource.cpp
+35 −34 clang/lib/Sema/SemaTemplate.cpp
+3 −7 clang/lib/Sema/SemaTemplateDeduction.cpp
+3 −8 clang/lib/Sema/SemaTemplateInstantiate.cpp
+4 −5 clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
+2 −1 clang/lib/Serialization/ASTReaderDecl.cpp
+1 −1 clang/lib/Serialization/ASTWriterDecl.cpp
+3 −4 clang/tools/libclang/CIndex.cpp
+1 −1 clang/unittests/AST/ASTImporterTest.cpp
+0 −3 libc/cmake/modules/LLVMLibCObjectRules.cmake
+4 −0 libc/config/baremetal/arm/entrypoints.txt
+4 −0 libc/config/baremetal/riscv/entrypoints.txt
+9 −0 libc/src/__support/threads/CMakeLists.txt
+52 −0 libc/src/__support/threads/CndVar.h
+13 −0 libc/src/__support/threads/linux/CMakeLists.txt
+103 −0 libc/src/__support/threads/linux/CndVar.cpp
+5 −6 libc/src/threads/linux/CMakeLists.txt
+0 −148 libc/src/threads/linux/CndVar.h
+8 −3 libc/src/threads/linux/cnd_broadcast.cpp
+5 −2 libc/src/threads/linux/cnd_destroy.cpp
+6 −3 libc/src/threads/linux/cnd_init.cpp
+7 −3 libc/src/threads/linux/cnd_signal.cpp
+7 −4 libc/src/threads/linux/cnd_wait.cpp
+11 −0 libc/startup/baremetal/CMakeLists.txt
+27 −0 libc/startup/baremetal/fini.cpp
+32 −0 libc/startup/baremetal/init.cpp
+4 −0 libc/test/integration/scudo/CMakeLists.txt
+1 −0 libcxx/docs/ReleaseNotes/19.rst
+2 −2 libcxx/docs/Status/Cxx20Papers.csv
+2 −0 libcxx/include/CMakeLists.txt
+360 −0 libcxx/include/__atomic/atomic_ref.h
+1 −0 libcxx/include/__atomic/atomic_sync.h
+4 −0 libcxx/include/__atomic/check_memory_order.h
+1 −26 libcxx/include/__atomic/cxx_atomic_impl.h
+54 −0 libcxx/include/__atomic/to_gcc_order.h
+1 −0 libcxx/include/atomic
+869 −0 libcxx/include/libcxx.imp
+9 −1 libcxx/include/module.modulemap
+1 −1 libcxx/modules/std/atomic.inc
+58 −0 libcxx/test/libcxx/atomics/atomics.ref/assert.compare_exchange_strong.pass.cpp
+58 −0 libcxx/test/libcxx/atomics/atomics.ref/assert.compare_exchange_weak.pass.cpp
+40 −0 libcxx/test/libcxx/atomics/atomics.ref/assert.ctor.pass.cpp
+55 −0 libcxx/test/libcxx/atomics/atomics.ref/assert.load.pass.cpp
+63 −0 libcxx/test/libcxx/atomics/atomics.ref/assert.store.pass.cpp
+55 −0 libcxx/test/libcxx/atomics/atomics.ref/assert.wait.pass.cpp
+50 −0 libcxx/test/std/atomics/atomics.ref/assign.pass.cpp
+60 −0 libcxx/test/std/atomics/atomics.ref/bitwise_and_assign.pass.cpp
+56 −0 libcxx/test/std/atomics/atomics.ref/bitwise_or_assign.pass.cpp
+56 −0 libcxx/test/std/atomics/atomics.ref/bitwise_xor_assign.pass.cpp
+221 −0 libcxx/test/std/atomics/atomics.ref/compare_exchange_strong.pass.cpp
+226 −0 libcxx/test/std/atomics/atomics.ref/compare_exchange_weak.pass.cpp
+45 −0 libcxx/test/std/atomics/atomics.ref/convert.pass.cpp
+37 −0 libcxx/test/std/atomics/atomics.ref/ctor.pass.cpp
+33 −0 libcxx/test/std/atomics/atomics.ref/deduction.pass.cpp
+45 −0 libcxx/test/std/atomics/atomics.ref/exchange.pass.cpp
+113 −0 libcxx/test/std/atomics/atomics.ref/fetch_add.pass.cpp
+69 −0 libcxx/test/std/atomics/atomics.ref/fetch_and.pass.cpp
+68 −0 libcxx/test/std/atomics/atomics.ref/fetch_or.pass.cpp
+113 −0 libcxx/test/std/atomics/atomics.ref/fetch_sub.pass.cpp
+68 −0 libcxx/test/std/atomics/atomics.ref/fetch_xor.pass.cpp
+97 −0 libcxx/test/std/atomics/atomics.ref/increment_decrement.pass.cpp
+71 −0 libcxx/test/std/atomics/atomics.ref/is_always_lock_free.pass.cpp
+62 −0 libcxx/test/std/atomics/atomics.ref/load.pass.cpp
+132 −0 libcxx/test/std/atomics/atomics.ref/member_types.pass.cpp
+78 −0 libcxx/test/std/atomics/atomics.ref/notify_all.pass.cpp
+46 −0 libcxx/test/std/atomics/atomics.ref/notify_one.pass.cpp
+79 −0 libcxx/test/std/atomics/atomics.ref/operator_minus_equals.pass.cpp
+79 −0 libcxx/test/std/atomics/atomics.ref/operator_plus_equals.pass.cpp
+39 −0 libcxx/test/std/atomics/atomics.ref/required_alignment.pass.cpp
+26 −0 libcxx/test/std/atomics/atomics.ref/requires-trivially-copyable.verify.cpp
+61 −0 libcxx/test/std/atomics/atomics.ref/store.pass.cpp
+136 −0 libcxx/test/std/atomics/atomics.ref/test_helper.h
+88 −0 libcxx/test/std/atomics/atomics.ref/wait.pass.cpp
+4 −0 libunwind/include/__libunwind_config.h
+2 −1 libunwind/src/UnwindLevel1.c
+2 −2 libunwind/src/UnwindRegistersRestore.S
+2 −2 libunwind/src/UnwindRegistersSave.S
+2 −2 libunwind/src/libunwind.cpp
+1 −0 llvm/include/llvm/Object/ObjectFile.h

0 comments on commit 5d42b43

Please sign in to comment.