[PR #7] Ninja build #10

Open
opened 2026-02-18 19:21:13 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/RPCS3/llvm-mirror/pull/7
Author: @xddxd
Created: 3/29/2021
Status: 🔄 Open

Base: masterHead: master


📝 Commits (10+)

  • f4821a9 First commit on the release/11.x branch.
  • 0ea431c Revert "[InstSimplify] Remove select ?, undef, X -> X and select ?, X, undef -> X transforms" and subsequent patches
  • c3cb455 [InstCombine] update datalayout in test file; NFC
  • 4af794b [InstCombine] prevent infinite looping in or-icmp fold (PR46712)
  • 5e978f5 Temporarily Revert "[AssumeBundles] Use operand bundles to encode alignment assumptions"
  • de6acde [X86] Add test case for PR46455.
  • 3ad8be5 [X86] Move integer hadd/hsub formation into a helper function shared by combineAdd and combineSub.
  • 4fef486 Add -flang flag to the test-release.sh script
  • 490a4c3 [docs] Add Deprecated section to ReleaseNotes
  • 491e87b Remove TwoAddressInstructionPass::sink3AddrInstruction.

📊 Changes

100 files changed (+0 additions, -0 deletions)

View changed files

📝 CMakeLists.txt (+5 -5)
azure-pipelines.yml (+143 -0)
📝 cmake/modules/HandleLLVMOptions.cmake (+10 -0)
📝 cmake/modules/LLVMConfig.cmake.in (+1 -0)
📝 docs/ReleaseNotes.rst (+252 -52)
📝 docs/conf.py (+2 -2)
📝 docs/index.rst (+1 -6)
📝 include/llvm-c/Core.h (+21 -1)
📝 include/llvm/ADT/CoalescingBitVector.h (+3 -4)
📝 include/llvm/ADT/DenseMap.h (+9 -10)
📝 include/llvm/ADT/STLExtras.h (+10 -10)
📝 include/llvm/ADT/SmallPtrSet.h (+3 -0)
📝 include/llvm/ADT/iterator.h (+10 -4)
📝 include/llvm/Analysis/InstructionSimplify.h (+6 -0)
📝 include/llvm/CodeGen/TargetFrameLowering.h (+6 -0)
📝 include/llvm/Config/config.h.cmake (+3 -3)
📝 include/llvm/Config/llvm-config.h.cmake (+3 -0)
📝 include/llvm/Frontend/OpenMP/OMPIRBuilder.h (+9 -2)
📝 include/llvm/IR/IRBuilder.h (+28 -14)
📝 include/llvm/MC/MCDwarf.h (+11 -4)

...and 80 more files

📄 Description

Building with ninja on Azure. Thanks @JohnHolmesII.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/RPCS3/llvm-mirror/pull/7 **Author:** [@xddxd](https://github.com/xddxd) **Created:** 3/29/2021 **Status:** 🔄 Open **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`f4821a9`](https://github.com/RPCS3/llvm-mirror/commit/f4821a98838d805eae8ebb79dde92359f17c646f) First commit on the release/11.x branch. - [`0ea431c`](https://github.com/RPCS3/llvm-mirror/commit/0ea431c02167c846c6306c5e8312d7f3010cee6e) Revert "[InstSimplify] Remove select ?, undef, X -> X and select ?, X, undef -> X transforms" and subsequent patches - [`c3cb455`](https://github.com/RPCS3/llvm-mirror/commit/c3cb4553a8828266398a873c7d4296e340647ca3) [InstCombine] update datalayout in test file; NFC - [`4af794b`](https://github.com/RPCS3/llvm-mirror/commit/4af794b176f175c08c7ba4c87d737b81f3c11687) [InstCombine] prevent infinite looping in or-icmp fold (PR46712) - [`5e978f5`](https://github.com/RPCS3/llvm-mirror/commit/5e978f5f2c88334cd6290adc75ccdbcd16ab72fc) Temporarily Revert "[AssumeBundles] Use operand bundles to encode alignment assumptions" - [`de6acde`](https://github.com/RPCS3/llvm-mirror/commit/de6acde8777fc248743516019ff594bc2bbf7dcb) [X86] Add test case for PR46455. - [`3ad8be5`](https://github.com/RPCS3/llvm-mirror/commit/3ad8be54872d023e59b9b3b00c51464bdc8e536f) [X86] Move integer hadd/hsub formation into a helper function shared by combineAdd and combineSub. - [`4fef486`](https://github.com/RPCS3/llvm-mirror/commit/4fef4867aff39c0f7d2d81504c8ff732432b350a) Add -flang flag to the test-release.sh script - [`490a4c3`](https://github.com/RPCS3/llvm-mirror/commit/490a4c357df7a027b81f3e860997d029fc76a76d) [docs] Add Deprecated section to ReleaseNotes - [`491e87b`](https://github.com/RPCS3/llvm-mirror/commit/491e87bf42712b39eb9ed45f394226b3d2d9594b) Remove TwoAddressInstructionPass::sink3AddrInstruction. ### 📊 Changes **100 files changed** (+0 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `CMakeLists.txt` (+5 -5) ➕ `azure-pipelines.yml` (+143 -0) 📝 `cmake/modules/HandleLLVMOptions.cmake` (+10 -0) 📝 `cmake/modules/LLVMConfig.cmake.in` (+1 -0) 📝 `docs/ReleaseNotes.rst` (+252 -52) 📝 `docs/conf.py` (+2 -2) 📝 `docs/index.rst` (+1 -6) 📝 `include/llvm-c/Core.h` (+21 -1) 📝 `include/llvm/ADT/CoalescingBitVector.h` (+3 -4) 📝 `include/llvm/ADT/DenseMap.h` (+9 -10) 📝 `include/llvm/ADT/STLExtras.h` (+10 -10) 📝 `include/llvm/ADT/SmallPtrSet.h` (+3 -0) 📝 `include/llvm/ADT/iterator.h` (+10 -4) 📝 `include/llvm/Analysis/InstructionSimplify.h` (+6 -0) 📝 `include/llvm/CodeGen/TargetFrameLowering.h` (+6 -0) 📝 `include/llvm/Config/config.h.cmake` (+3 -3) 📝 `include/llvm/Config/llvm-config.h.cmake` (+3 -0) 📝 `include/llvm/Frontend/OpenMP/OMPIRBuilder.h` (+9 -2) 📝 `include/llvm/IR/IRBuilder.h` (+28 -14) 📝 `include/llvm/MC/MCDwarf.h` (+11 -4) _...and 80 more files_ </details> ### 📄 Description Building with ninja on Azure. Thanks @JohnHolmesII. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-18 19:21:13 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: RPCS3/llvm-mirror#10