[PATCH] D33849: DAG: Undo and->or combine with FrameIndexes

Alexei Starovoitov via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jun 2 16:07:52 PDT 2017


ast accepted this revision.
ast added a comment.
This revision is now accepted and ready to land.

bpf side looks good and this undo of 'or' back into 'add' is useful for bpf backend as well,
since 'ptr |= const' is not recognized by the kernel and bpf backend emits only 'ptr +=' which causes unnecessary ugly code in places like in this test.


https://reviews.llvm.org/D33849





More information about the llvm-commits mailing list