reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/CodeGen/LexicalScopes.h
   65   SmallVectorImpl<LexicalScope *> &getChildren() { return Children; }
   69   void addChild(LexicalScope *S) { Children.push_back(S); }
lib/CodeGen/LexicalScopes.cpp
  332   if (!Children.empty())
  334   for (unsigned i = 0, e = Children.size(); i != e; ++i)
  335     if (Children[i] != this)
  336       Children[i]->dump(Indent + 2);