LLVM/project 02549e7 — .github/workflows release-documentation.yml
Remove unused variable
| Delta | File | |
|---|---|---|
| +0 | -2 | .github/workflows/release-documentation.yml |
| +0 | -2 | 1 files |
Remove unused variable
| Delta | File | |
|---|---|---|
| +0 | -2 | .github/workflows/release-documentation.yml |
| +0 | -2 | 1 files |
Remove debugging
| Delta | File | |
|---|---|---|
| +0 | -1 | .github/workflows/release-documentation.yml |
| +0 | -1 | 1 files |
Fixes
| Delta | File | |
|---|---|---|
| +5 | -3 | .github/workflows/release-documentation.yml |
| +5 | -3 | 1 files |
Digest fix
| Delta | File | |
|---|---|---|
| +1 | -2 | .github/workflows/release-documentation.yml |
| +1 | -2 | 1 files |
Remove doxygen workflow
| Delta | File | |
|---|---|---|
| +0 | -130 | .github/workflows/release-doxygen.yml |
| +0 | -16 | .github/workflows/release-tasks.yml |
| +0 | -146 | 2 files |
Fix tarballanmes and add pull_reqeust block
| Delta | File | |
|---|---|---|
| +6 | -4 | .github/workflows/release-documentation.yml |
| +6 | -4 | 1 files |
Debug
| Delta | File | |
|---|---|---|
| +1 | -0 | .github/workflows/release-documentation.yml |
| +1 | -0 | 1 files |
Fixes
| Delta | File | |
|---|---|---|
| +3 | -3 | .github/workflows/release-documentation.yml |
| +3 | -3 | 1 files |
Fix matrix
| Delta | File | |
|---|---|---|
| +9 | -8 | .github/workflows/release-documentation.yml |
| +9 | -8 | 1 files |
Fix
| Delta | File | |
|---|---|---|
| +1 | -1 | .github/workflows/release-documentation.yml |
| +1 | -1 | 1 files |
ebug
| Delta | File | |
|---|---|---|
| +0 | -5 | .github/workflows/release-documentation.yml |
| +0 | -5 | 1 files |
workflows: Merge release-doxygen into release-documenation These two workflows use the same script and have the same structure, so it's easier just to have one job that builds both.
| Delta | File | |
|---|---|---|
| +35 | -10 | .github/workflows/release-documentation.yml |
| +35 | -10 | 1 files |
Remove permissions
| Delta | File | |
|---|---|---|
| +0 | -4 | .github/workflows/release-documentation.yml |
| +0 | -4 | 1 files |
Revert "XXX: Debug" This reverts commit ef443b1bebd360a4aad44d46b2a63621ccaba589.
| Delta | File | |
|---|---|---|
| +7 | -0 | .github/workflows/release-documentation.yml |
| +7 | -0 | 1 files |
Remove debug
| Delta | File | |
|---|---|---|
| +0 | -2 | .github/workflows/release-documentation.yml |
| +0 | -2 | 1 files |
Debug
| Delta | File | |
|---|---|---|
| +2 | -1 | .github/workflows/release-documentation.yml |
| +2 | -1 | 1 files |
Fix
| Delta | File | |
|---|---|---|
| +5 | -0 | .github/workflows/release-documentation.yml |
| +5 | -0 | 1 files |
XXX: Debug
| Delta | File | |
|---|---|---|
| +0 | -7 | .github/workflows/release-documentation.yml |
| +0 | -7 | 1 files |
Fixes and cleanups
| Delta | File | |
|---|---|---|
| +5 | -5 | .github/workflows/release-documentation.yml |
| +1 | -1 | llvm/utils/release/build-docs.sh |
| +6 | -6 | 2 files |
debug
| Delta | File | |
|---|---|---|
| +1 | -1 | llvm/utils/release/build-docs.sh |
| +1 | -1 | 1 files |
Revert "Fix build of libcxx docs" This reverts commit 179432674685f1eb5a7546f1fa1434ab75fee36f.
| Delta | File | |
|---|---|---|
| +11 | -3 | llvm/utils/release/build-docs.sh |
| +11 | -3 | 1 files |
Revert "Fix typo" This reverts commit f90c6dd3e5c5855b327b059982eb94d0ab3a0f73.
| Delta | File | |
|---|---|---|
| +1 | -1 | llvm/utils/release/build-docs.sh |
| +1 | -1 | 1 files |
Revert "Fix typo" This reverts commit a5d98fb1210839d7b0fe58b0be77ed6d379226b4.
| Delta | File | |
|---|---|---|
| +1 | -1 | llvm/utils/release/build-docs.sh |
| +1 | -1 | 1 files |
Fix typo
| Delta | File | |
|---|---|---|
| +1 | -1 | llvm/utils/release/build-docs.sh |
| +1 | -1 | 1 files |
Fix typo
| Delta | File | |
|---|---|---|
| +1 | -1 | llvm/utils/release/build-docs.sh |
| +1 | -1 | 1 files |
Fix build of libcxx docs
| Delta | File | |
|---|---|---|
| +3 | -11 | llvm/utils/release/build-docs.sh |
| +3 | -11 | 1 files |
Cleanups
| Delta | File | |
|---|---|---|
| +0 | -18 | .github/workflows/release-documentation.yml |
| +0 | -18 | 1 files |
More fixes
| Delta | File | |
|---|---|---|
| +21 | -6 | .github/workflows/release-documentation.yml |
| +21 | -6 | 1 files |
workflows/release-documentation: Rework workflow to make it testable Removed the environment declaration from the validation job and split out the www-releases update into a separate job. This makes it safe and possible to add a pull_request trigger so we can at least test building the documentation when someone submits a pull request.
| Delta | File | |
|---|---|---|
| +5 | -0 | .github/workflows/release-documentation.yml |
| +5 | -0 | 1 files |
[HLSL] Fix crash when comparing two half vectors (#214332) Fixes #213814. Comparing two half vectors in default mode crashed Clang with a `convertHalfVecBinOp` assertion because the function expects the result to be a half/short vector while HLSL returns an int vector. This PR fixes the bug by skipping the conversion function when the result type is not a half or short vector. This lets it fall through to the default `BinaryOperator::Create` path, which builds the comparison correctly with the int vector result type. The PR also adds regression tests covering the six comparison operators. Assisted-by: Claude Opus 4.8
| Delta | File | |
|---|---|---|
| +70 | -0 | clang/test/CodeGenHLSL/Operators/half-vector-comparisons.hlsl |
| +63 | -0 | clang/test/SemaHLSL/Operators/half-vector-comparisons.hlsl |
| +12 | -4 | clang/lib/Sema/SemaExpr.cpp |
| +145 | -4 | 3 files |