Searched defs:SectionStack (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/MC/
H A DMCStreamer.h192 /// SectionStack - This is stack of current and previous section
194 SmallVector<std::pair<MCSectionSubPair, MCSectionSubPair>, 4> SectionStack; member in class:llvm::MCStreamer
298 if (!SectionStack.empty())
299 return SectionStack.back().first;
306 if (!SectionStack.empty())
307 return SectionStack.back().second;
326 SectionStack.push_back(
335 if (SectionStack.size() <= 1)
337 MCSectionSubPair oldSection = SectionStack.pop_back_val().first;
338 MCSectionSubPair curSection = SectionStack
[all...]

Completed in 876 milliseconds