Issue 120469
Summary [TySan] Clang compilation hangs on large arrays
Labels clang
Assignees
Reporter artem
    C++ reproducer:

```c++
#include <string>
#include <array>

struct foo {
 std::string name;
};

std::array<foo, 10000> options;
```

Clang is invoked with:
```
clang++-20 test.cpp -c -o test.o -O1 -fsanitize=type
```

Clang version: 20.0.0 (++20241218112756+95eb49a09055-1~exp1~20241218112924.2537)
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to