[llvm] [X86] Set MaxAtomicSizeInBitsSupported. (PR #75112)

Aiden Grossman via llvm-commits llvm-commits at lists.llvm.org
Mon Dec 11 19:42:30 PST 2023


================
@@ -71,6 +71,6 @@ jobs:
           python ./code-format-tools/llvm/utils/git/code-format-helper.py \
             --token ${{ secrets.GITHUB_TOKEN }} \
             --issue-number $GITHUB_PR_NUMBER \
-            --start-rev $START_REV \
+            --start-rev $(git merge-base $START_REV $END_REV) \
----------------
boomanaiden154 wrote:

Note that this change won't do anything right here as this workflow is setup as a `pull_request_target` for security reasons, which means it uses the workflow definition from the PR target (the `main` branch) rather than the workflow branch. I've opened #75132 which should fix this issue in the CI. Rebasing to the latest `main` should also fix it.

https://github.com/llvm/llvm-project/pull/75112


More information about the llvm-commits mailing list