[lldb-dev] [Bug 21069] New: tab expansion of variables in anonymous namespaces broken
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Thu Sep 25 07:46:53 PDT 2014
http://llvm.org/bugs/show_bug.cgi?id=21069
Bug ID: 21069
Summary: tab expansion of variables in anonymous namespaces
broken
Product: lldb
Version: unspecified
Hardware: PC
OS: Linux
Status: NEW
Severity: normal
Priority: P
Component: All Bugs
Assignee: lldb-dev at cs.uiuc.edu
Reporter: octoploid at yandex.com
Classification: Unclassified
markus at x4 ~ % cat anon_namesp.cpp
namespace { int foo (void) { return 0; } } int main() { return foo (); }
markus at x4 ~ % clang++ -g anon_namesp.cpp
markus at x4 ~ % lldb ./a.out
(lldb) target create "./a.out"
Current executable set to './a.out' (x86_64).
(lldb) b fo<press tab>
<it gets expanded to>
(lldb) b fononymous namespace)::foo()
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/lldb-dev/attachments/20140925/d4b6c141/attachment.html>
More information about the lldb-dev
mailing list