[llvm-bugs] [Bug 52125] New: Failure to optimize out store to destroyed variable

via llvm-bugs llvm-bugs at lists.llvm.org
Sat Oct 9 18:33:35 PDT 2021


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

            Bug ID: 52125
           Summary: Failure to optimize out store to destroyed variable
           Product: libraries
           Version: trunk
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: enhancement
          Priority: P
         Component: Scalar Optimizations
          Assignee: unassignedbugs at nondot.org
          Reporter: gabravier at gmail.com
                CC: llvm-bugs at lists.llvm.org

struct X {
  int i;
};

void f(X *x) {
  x->i = 0;
  x->~X();
}

This can be optimized to doing nothing. This optimization is done by GCC, but
not by LLVM.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20211010/6ba72f42/attachment.html>


More information about the llvm-bugs mailing list