Re: [Lldb-commits] [PATCH] D13350: [lldb] Fix evaluation of global variables

2015-10-01 Thread Pavel Labath via lldb-commits
labath added a subscriber: labath. labath added a comment. Could you please put the examples you cite above into the test suite? http://reviews.llvm.org/D13350 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/m

[Lldb-commits] [PATCH] D13350: [lldb] Fix evaluation of global variables

2015-10-01 Thread Eugene Leviant via lldb-commits
evgeny777 created this revision. evgeny777 added reviewers: clayborg, paulherman. evgeny777 added subscribers: lldb-commits, KLapshin. Current revision contains bug, related to evaluation of global variables. Imagine you have the following code ``` int _g = 1; int func(void) { int _g = 2;