[PATCH] D112381: [flang] Checks for pointers to intrinsic functions

Pete Steinfeld via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 25 13:27:34 PDT 2021


PeteSteinfeld added a comment.

Rather than Peter committing this, it’s better for you to do it 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:

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

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

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


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D112381



More information about the llvm-commits mailing list