Issue 141200
Summary Not DSEing of stores to aggregates arguments
Labels new issue
Assignees
Reporter pinskia
    Take:
```
struct f
{
  int a[1024];
};
struct f h(struct f a1)
{
  struct f a = {};
  a1 = a;
 return a;
}
```

There should only be 1 memset (zeroing) in the function h.


_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to