HomeSort by relevance Sort by last modified time
    Searched refs:SectionStack (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/MC/
MCStreamer.h 67 /// SectionStack - This is stack of current and previous section
70 const MCSection *>, 4> SectionStack;
165 if (!SectionStack.empty())
166 return SectionStack.back().first;
173 if (!SectionStack.empty())
174 return SectionStack.back().second;
187 SectionStack.push_back(std::make_pair(getCurrentSection(),
196 if (SectionStack.size() <= 1)
198 const MCSection *oldSection = SectionStack.pop_back_val().first;
199 const MCSection *curSection = SectionStack.back().first
    [all...]
  /external/llvm/lib/MC/
MCStreamer.cpp 30 SectionStack.push_back(std::make_pair(section, section));

Completed in 34 milliseconds