Skip to content
  1. Jul 11, 2011
  2. Jul 10, 2011
  3. Jul 09, 2011
    • Argyrios Kyrtzidis's avatar
      [libclang] Fix linker error in buildbots. · 27019be9
      Argyrios Kyrtzidis authored
      llvm-svn: 134847
      27019be9
    • Greg Clayton's avatar
      Fixed the global and static variables to always be in scope. · daf515fc
      Greg Clayton authored
      Made it so that you can create synthetic children of array
      value objects. This is for creating array members when the
      array index is out of range. This comes in handy when you have
      a structure definition like:
      
      struct Collection
      {
          uint32_t count;
          Item array[0];
      };
      "array" has 1 item, but many times in practice there are more
      items in "item_array".
      
      This allows you to do:
      
      (lldb) target variable g_collection.array[3]
      
      To implement this, the get child at index has been modified
      to have a "ignore_array_bounds" boolean that can be set to true.
      
      llvm-svn: 134846
      daf515fc
Loading