[llvm] [Attributor][AMDGPU] Enable AAIndirectCallInfo for AMDAttributor (PR #100952)

Johannes Doerfert via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 30 14:51:27 PDT 2024


jdoerfert wrote:

> I moved some code from #100954 to here. I'll come up with a test case that it can't be manifested w/o close world.

```
int G;
void bar() { G = 1; }
void foo(void (*fp)()) {
  fp();
}
```
w/ closed world we know we call bar, w/o we don't.

https://github.com/llvm/llvm-project/pull/100952


More information about the llvm-commits mailing list