-
Notifications
You must be signed in to change notification settings - Fork 12k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LLDB: reference to std::pmr::deque<> incorrectly shows size zero #68396
Comments
@llvm/issue-subscribers-lldb
Hi,
LLDB does not seem to recognize std::pmr::deque<>. The symptom is identical to what is described in #62153.
Tested on MacBook Pro M1 Pro,
```
lldb-1500.0.22.8
Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
```
```
❯ cat testing.cxx
#include <cstdio>
#include <memory_resource>
#include <deque>
typedef std::pmr::deque<int> int_deq;
int main() { int_deq numbers{&buf}; (numbers.push_back(1)); (numbers.push_back(12)); numbers.clear(); return 0;
|
As with #62153, Looks like |
Apparently the problem is that with the allocator we now have an extra |
It is working on linux -
|
Hi,
LLDB does not seem to recognize std::pmr::deque<>. The symptom is identical to what is described in #62153.
Tested on MacBook Pro M1 Pro,
The text was updated successfully, but these errors were encountered: