Skip to content

Commit

Permalink
llvm: Update baseline to 2691b964150c77a9e6967423383ad14a7693095e
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 19, 2024
1 parent e383de1 commit e6fb2dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/llvm-project
Submodule llvm-project updated 47 files
+5 −1 clang/include/clang-c/Index.h
+11 −1 clang/include/clang/AST/ASTNodeTraverser.h
+11 −2 clang/include/clang/AST/RecursiveASTVisitor.h
+123 −0 clang/include/clang/AST/StmtOpenACC.h
+1 −0 clang/include/clang/AST/TextNodeDumper.h
+1 −0 clang/include/clang/Basic/StmtNodes.td
+13 −2 clang/include/clang/Parse/Parser.h
+12 −6 clang/include/clang/Sema/SemaOpenACC.h
+1 −0 clang/include/clang/Serialization/ASTBitCodes.h
+29 −0 clang/lib/AST/StmtOpenACC.cpp
+28 −0 clang/lib/AST/StmtPrinter.cpp
+8 −0 clang/lib/AST/StmtProfile.cpp
+4 −0 clang/lib/AST/TextNodeDumper.cpp
+3 −0 clang/lib/CodeGen/CGStmt.cpp
+5 −0 clang/lib/CodeGen/CodeGenFunction.h
+15 −6 clang/lib/CodeGen/CoverageMappingGen.cpp
+17 −5 clang/lib/Parse/ParseOpenACC.cpp
+1 −0 clang/lib/Sema/SemaExceptionSpec.cpp
+42 −44 clang/lib/Sema/SemaOpenACC.cpp
+74 −12 clang/lib/Sema/TreeTransform.h
+22 −0 clang/lib/Serialization/ASTReaderStmt.cpp
+14 −0 clang/lib/Serialization/ASTWriterStmt.cpp
+1 −0 clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
+22 −0 clang/test/AST/ast-print-openacc-wait-construct.cpp
+28 −28 clang/test/CoverageMapping/switch.cpp
+2 −2 clang/test/CoverageMapping/switchmacro.c
+65 −101 clang/test/ParserOpenACC/parse-wait-construct.c
+0 −1 clang/test/SemaOpenACC/combined-construct-default-clause.c
+0 −1 clang/test/SemaOpenACC/compute-construct-default-clause.c
+2 −2 clang/test/SemaOpenACC/unimplemented-construct.c
+225 −0 clang/test/SemaOpenACC/wait-construct-ast.cpp
+95 −0 clang/test/SemaOpenACC/wait-construct.cpp
+9 −0 clang/tools/libclang/CIndex.cpp
+3 −0 clang/tools/libclang/CXCursor.cpp
+28 −0 compiler-rt/test/ubsan/TestCases/Misc/local_bounds.cpp
+28 −0 compiler-rt/test/ubsan_minimal/TestCases/local_bounds.cpp
+1 −1 llvm/lib/ProfileData/Coverage/CoverageMapping.cpp
+7 −4 llvm/lib/Target/AMDGPU/SIInstructions.td
+4 −4 llvm/lib/Target/AMDGPU/VOP3Instructions.td
+2 −2 llvm/lib/Target/AMDGPU/VOPInstructions.td
+84 −60 llvm/test/MC/AMDGPU/gfx11_asm_vop3.s
+146 −56 llvm/test/MC/AMDGPU/gfx11_asm_vop3_dpp16.s
+126 −48 llvm/test/MC/AMDGPU/gfx11_asm_vop3_dpp8.s
+168 −30 llvm/test/MC/Disassembler/AMDGPU/gfx11_dasm_vop3.txt
+172 −28 llvm/test/MC/Disassembler/AMDGPU/gfx11_dasm_vop3_dpp16.txt
+156 −24 llvm/test/MC/Disassembler/AMDGPU/gfx11_dasm_vop3_dpp8.txt
+1 −1 llvm/test/tools/llvm-cov/branch-macros.cpp

0 comments on commit e6fb2dc

Please sign in to comment.