Go to file
Greg Clayton 4e26dd34a0 Fix "frame variable" to show all variables defined in functions and any contained lexical blocks, even if they are static variables.
For code like:

int g_global = 234;
int g_static = 345;
int main(int argc, char **argv)
{                     
    int a = 22333;
    static int g_int = 123;
    return g_global + g_static + g_int + a;
}


If we stop at the "return" statement, we expect to see "argc", "argv", "a" and "g_int" when we type "frame variable" since "g_int" is a locally defined static variable, but we don't expect to see "g_global" or "g_static" unless we add the -g option to "frame variable".

llvm-svn: 272348
2016-06-09 23:56:12 +00:00
clang RenderScript support in the Frontend 2016-06-09 23:34:20 +00:00
clang-tools-extra [include-fixer] do not index friend function declaration. 2016-06-09 14:18:40 +00:00
compiler-rt Fix win bot failure 2016-06-09 21:52:24 +00:00
debuginfo-tests
libclc math: Use single precision fmax in sp path 2016-05-17 19:44:01 +00:00
libcxx Make the comparison objects that we pass in for various tests look more like actual comparison objects. No functional change. 2016-06-09 18:34:38 +00:00
libcxxabi Partially revert r270816: build with -fvisibility=hidden. 2016-06-02 08:14:28 +00:00
libunwind [libunwind] Remove unused code. 2016-06-03 20:57:48 +00:00
lld Use errorDynRel like every other target. 2016-06-09 20:42:04 +00:00
lldb Fix "frame variable" to show all variables defined in functions and any contained lexical blocks, even if they are static variables. 2016-06-09 23:56:12 +00:00
llgo [llgo] llgoi: separate evaluation from printing 2016-04-25 01:18:20 +00:00
llvm [CMake] Removing fallback code for CMake versions before 3.1 2016-06-09 23:53:22 +00:00
openmp Fix spelling in comment 2016-06-09 18:51:17 +00:00
polly [NFC] "#include <ciso646>" is unnecessary, because "and", "or" were replaced 2016-06-08 16:44:11 +00:00