[PATCH] D113076: [flang] Add a semantics test for co_sum

Pete Steinfeld via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 10 10:23:42 PST 2021


PeteSteinfeld added a comment.

I think it's best for you to do the commit yourself. Here’s how.

The first step is to get committer access to the llvm-project repository. You can request commit access for the llvm-project here: https://llvm.org/docs/DeveloperPolicy.html#obtaining-commit-access. Once access is granted, an invitation should be visible here: https://github.com/llvm.

Once you have committer access (actually, you can do this now), you should incorporate your changes into the latest source code from llvm-project, and make sure that everything builds and tests correctly. Here’s how to do that:

  Start in your private repository in the branch that contains your changes.
  If you have multiple commits, run git rebase -i to squash them into a single commit.
  Merge the latest changes from llvm-project into your branch:

• git checkout main
• git pull
• git checkout mybranch
• git rebase main

  Rebuild and retest to verify that your changes still work.
  Push your changes to the main branch in the llvm-repository: git push origin mybranch:main


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D113076/new/

https://reviews.llvm.org/D113076



More information about the llvm-commits mailing list