Home
last modified time | relevance | path

Searched refs:SubExceptions (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/
H A DWebAssemblyExceptionInfo.h47 std::vector<WebAssemblyException *> SubExceptions; variable
53 ~WebAssemblyException() { DeleteContainerPointers(SubExceptions); } in ~WebAssemblyException()
88 return SubExceptions; in getSubExceptions()
91 return SubExceptions; in getSubExceptions()
93 void addSubException(WebAssemblyException *E) { SubExceptions.push_back(E); } in addSubException()
95 iterator begin() const { return SubExceptions.begin(); } in begin()
96 iterator end() const { return SubExceptions.end(); } in end()
H A DWebAssemblyExceptionInfo.cpp184 for (auto &SubE : SubExceptions) in print()