[Lldb-commits] [PATCH] D29932: Fix TestNameLookup for GCC

2017-02-15 Thread Pavel Labath via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL295170: Fix TestNameLookup for GCC (authored by labath). Changed prior to commit: https://reviews.llvm.org/D29932?vs=88347&id=88509#toc Repository: rL LLVM https://reviews.llvm.org/D29932 Files:

[Lldb-commits] [PATCH] D29932: Fix TestNameLookup for GCC

2017-02-14 Thread Pavel Labath via Phabricator via lldb-commits
labath created this revision. GCC emits also symbols for the __PRETTY_FUNCTION__ virtual variable, which we accidentaly pick up when looking for functions for with "unique_function_name" in the name. This makes the target.FindFunctions call fail, as that symbol is not a function. I also strenghte