https://bugs.llvm.org/show_bug.cgi?id=47594

            Bug ID: 47594
           Summary: Failure to optimize and+not pattern
           Product: libraries
           Version: trunk
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: enhancement
          Priority: P
         Component: Scalar Optimizations
          Assignee: unassignedb...@nondot.org
          Reporter: gabrav...@gmail.com
                CC: llvm-bugs@lists.llvm.org

int f(int a, int b)
{
    return (a ^ b) | ~(a | b);
}

This can be optimized to `return ~(a & b);`. This optimization is done by GCC,
but not by LLVM.

See also comparison here : https://godbolt.org/z/xjWEbh

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to