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 87 /// SectionStack - This is stack of current and previous section
90 const MCSection *>, 4> SectionStack;
178 if (!SectionStack.empty())
179 return SectionStack.back().first;
186 if (!SectionStack.empty())
187 return SectionStack.back().second;
200 SectionStack.push_back(std::make_pair(getCurrentSection(),
209 if (SectionStack.size() <= 1)
211 const MCSection *oldSection = SectionStack.pop_back_val().first;
212 const MCSection *curSection = SectionStack.back().first
    [all...]
  /external/llvm/lib/MC/
MCStreamer.cpp 28 SectionStack.push_back(std::make_pair(section, section));
44 SectionStack.clear();
45 SectionStack.push_back(std::make_pair(section, section));

Completed in 73 milliseconds