[PATCH] D43835: Simplify more cases of logical ops of masked icmps.

Hiroshi Yamauchi via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 9 10:37:14 PST 2018


yamauchi marked an inline comment as done.
yamauchi added inline comments.


================
Comment at: lib/Transforms/InstCombine/InstCombineAndOrXor.cpp:448
+  // If IsAnd is false, we get it in negated form:
+  //   (icmp eq (A & B), 0) || (icmp ne (A & D), E) ->
+  //      !((icmp ne (A & B), 0) && (icmp eq (A & D), E)).
----------------
yamauchi wrote:
> davidxl wrote:
> > || -> |
> What does this comment mean?
Now I see what you meant. Done. It was formatted as a table :)


Repository:
  rL LLVM

https://reviews.llvm.org/D43835





More information about the llvm-commits mailing list