[PATCH] D70224: [WinEH] Fix the wrong alignment orientation during calculating EH frame.
Reid Kleckner via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sun Nov 17 09:23:14 PST 2019
rnk added a comment.
In D70224#1746846 <https://reviews.llvm.org/D70224#1746846>, @pengfei wrote:
> Hi @rnk, I guess we need to merge it to 9.0 branch, right? I haven't did such before, do I need wait for someone approval? Is there someone responsible for committing, or I can do it myself?
I don't know if there is a separate list of committers who can push to the release/9.x branch. I'd suggest trying it. Merging should be a matter of doing the following:
$ git pull # make sure up to date
$ git checkout release/9.x # check out current 9.0.1 release, typically slow
$ git cherry-pick -x ${githash} # cherry pick this patch. -x adds a note about the original hash.
$ git push ${remote} release/9.x # push to the llvm github remote release/9.x branch
Fill in appropriate values of githash and remote. If it doesn't work, I'll give it a shot next week.
Thanks for following up! Bugs happen.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D70224/new/
https://reviews.llvm.org/D70224
More information about the llvm-commits
mailing list